| 68 | } |
| 69 | |
| 70 | void DebugDraw::DrawSolidCircle( const b2Vec2 ¢er, float32 radius, const b2Vec2 &axis, const b2Color &color ) |
| 71 | { |
| 72 | gl::color( toCinder( color ) ); |
| 73 | gl::drawSolidCircle( toCinder( center ), radius, NUM_CIRCLE_SEGMENTS ); |
| 74 | } |
| 75 | |
| 76 | void DebugDraw::DrawSegment( const b2Vec2 &p1, const b2Vec2 &p2, const b2Color &color ) |
| 77 | { |
no test coverage detected