| 217 | } |
| 218 | |
| 219 | void DrawDebugCylinder(const Vector3& center, const Quaternion& orient, float radius, float length, const Color& color, RendererDebugPage page, bool isWireframe) |
| 220 | { |
| 221 | g_Renderer.AddDebugCylinder(center, orient, radius, length, color, page, isWireframe); |
| 222 | } |
| 223 | |
| 224 | void DrawDebugSphere(const Vector3& center, float radius, const Color& color, RendererDebugPage page, bool isWireframe) |
| 225 | { |
nothing calls this directly
no test coverage detected