| 2099 | } |
| 2100 | |
| 2101 | void DebugDraw::DrawWireCylinder(const Vector3& position, const Quaternion& orientation, float radius, float height, const Color& color, float duration, bool depthTest) |
| 2102 | { |
| 2103 | Array<DebugTriangle>* list; |
| 2104 | if (depthTest) |
| 2105 | list = duration > 0 ? &Context->DebugDrawDepthTest.DefaultWireTriangles : &Context->DebugDrawDepthTest.OneFrameWireTriangles; |
| 2106 | else |
| 2107 | list = duration > 0 ? &Context->DebugDrawDefault.DefaultWireTriangles : &Context->DebugDrawDefault.OneFrameWireTriangles; |
| 2108 | ::DrawCylinder(list, position, orientation, radius, height, color, duration); |
| 2109 | } |
| 2110 | |
| 2111 | void DebugDraw::DrawCone(const Vector3& position, const Quaternion& orientation, float radius, float angleXY, float angleXZ, const Color& color, float duration, bool depthTest) |
| 2112 | { |
nothing calls this directly
no test coverage detected