| 328 | } |
| 329 | |
| 330 | void Tr2SphereConstraint::RenderDebugInfo( ITr2DebugRenderer2& renderer, const Matrix& worldTransform, const CcpMath::AxisAlignedBox& aabb ) const |
| 331 | { |
| 332 | if( !m_isValid ) |
| 333 | { |
| 334 | return; |
| 335 | } |
| 336 | renderer.DrawSphere( this, worldTransform, m_position, m_radius, 20, ITr2DebugRenderer2::Wireframe, 0xffff4444 ); |
| 337 | } |
nothing calls this directly
no test coverage detected