| 118 | } |
| 119 | |
| 120 | void 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 | |
| 130 | void duDebugDrawCross(struct duDebugDraw* dd, const float x, const float y, const float z, |
| 131 | const float size, unsigned int col, const float lineWidth) |
no test coverage detected