| 74 | } |
| 75 | |
| 76 | void DebugDraw::DrawSegment( const b2Vec2 &p1, const b2Vec2 &p2, const b2Color &color ) |
| 77 | { |
| 78 | gl::color( toCinder( color ) ); |
| 79 | gl::drawLine( toCinder( p1 ), toCinder( p2 ) ); |
| 80 | } |
| 81 | |
| 82 | void DebugDraw::DrawTransform( const b2Transform &xf ) |
| 83 | { |