MCPcopy Create free account
hub / github.com/axmolengine/axmol / duDebugDrawBoxWire

Function duDebugDrawBoxWire

3rdparty/recast/DebugDraw.cpp:88–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88void duDebugDrawBoxWire(struct duDebugDraw* dd, float minx, float miny, float minz,
89 float maxx, float maxy, float maxz, unsigned int col, const float lineWidth)
90{
91 if (!dd) return;
92
93 dd->begin(DU_DRAW_LINES, lineWidth);
94 duAppendBoxWire(dd, minx,miny,minz, maxx,maxy,maxz, col);
95 dd->end();
96}
97
98void duDebugDrawArc(struct duDebugDraw* dd, const float x0, const float y0, const float z0,
99 const float x1, const float y1, const float z1, const float h,

Calls 3

duAppendBoxWireFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected