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

Function duDebugDrawCylinderWire

3rdparty/recast/DebugDraw.cpp:78–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78void duDebugDrawCylinderWire(struct duDebugDraw* dd, float minx, float miny, float minz,
79 float maxx, float maxy, float maxz, unsigned int col, const float lineWidth)
80{
81 if (!dd) return;
82
83 dd->begin(DU_DRAW_LINES, lineWidth);
84 duAppendCylinderWire(dd, minx,miny,minz, maxx,maxy,maxz, col);
85 dd->end();
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)

Callers 1

drawObstaclesMethod · 0.85

Calls 3

duAppendCylinderWireFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected