| 76 | } |
| 77 | |
| 78 | void 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 | |
| 88 | void duDebugDrawBoxWire(struct duDebugDraw* dd, float minx, float miny, float minz, |
| 89 | float maxx, float maxy, float maxz, unsigned int col, const float lineWidth) |
no test coverage detected