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

Function duDebugDrawCircle

3rdparty/recast/DebugDraw.cpp:120–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118}
119
120void duDebugDrawCircle(struct duDebugDraw* dd, const float x, const float y, const float z,
121 const float r, unsigned int col, const float lineWidth)
122{
123 if (!dd) return;
124
125 dd->begin(DU_DRAW_LINES, lineWidth);
126 duAppendCircle(dd, x,y,z, r, col);
127 dd->end();
128}
129
130void duDebugDrawCross(struct duDebugDraw* dd, const float x, const float y, const float z,
131 const float size, unsigned int col, const float lineWidth)

Callers 1

drawAgentsMethod · 0.85

Calls 3

duAppendCircleFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected