| 180 | } |
| 181 | |
| 182 | void TriStepRenderDebug::DrawCapsule( const Vector3& start, const Vector3& end, float radius, int segments, uint32_t color /*= 0xffffffff */ ) |
| 183 | { |
| 184 | m_lineSet->AddCylinder( start, end, radius, segments, color ); |
| 185 | m_lineSet->AddSphere( start, radius, segments, color ); |
| 186 | m_lineSet->AddSphere( end, radius, segments, color ); |
| 187 | } |
| 188 | |
| 189 | void TriStepRenderDebug::DrawCylinder( const Vector3& start, const Vector3& end, float radius, int segments, uint32_t color /*= 0xffffffff */ ) |
| 190 | { |
nothing calls this directly
no test coverage detected