| 212 | } |
| 213 | |
| 214 | void DrawDebugCone(const Vector3& center, const Quaternion& orient, float radius, float length, const Vector4& color, RendererDebugPage page, bool isWireframe) |
| 215 | { |
| 216 | g_Renderer.AddDebugCone(center, orient, radius, length, color, page, isWireframe); |
| 217 | } |
| 218 | |
| 219 | void DrawDebugCylinder(const Vector3& center, const Quaternion& orient, float radius, float length, const Color& color, RendererDebugPage page, bool isWireframe) |
| 220 | { |
nothing calls this directly
no test coverage detected