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

Function duDebugDrawArc

3rdparty/recast/DebugDraw.cpp:98–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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,
100 const float as0, const float as1, unsigned int col, const float lineWidth)
101{
102 if (!dd) return;
103
104 dd->begin(DU_DRAW_LINES, lineWidth);
105 duAppendArc(dd, x0,y0,z0, x1,y1,z1, h, as0, as1, col);
106 dd->end();
107}
108
109void duDebugDrawArrow(struct duDebugDraw* dd, const float x0, const float y0, const float z0,
110 const float x1, const float y1, const float z1,

Callers

nothing calls this directly

Calls 3

duAppendArcFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected