| 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, |
| 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 | |
| 109 | void duDebugDrawArrow(struct duDebugDraw* dd, const float x0, const float y0, const float z0, |
| 110 | const float x1, const float y1, const float z1, |
nothing calls this directly
no test coverage detected