| 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) |
| 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 | |
| 98 | void 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, |
no test coverage detected