| 205 | } |
| 206 | |
| 207 | void FallingGearsApp::drawDebug() |
| 208 | { |
| 209 | float pointsPerMeter = mScene.getPointsPerMeter(); |
| 210 | |
| 211 | gl::ScopedModelMatrix modelScope; |
| 212 | gl::scale( pointsPerMeter, pointsPerMeter ); |
| 213 | mScene.getWorld()->DrawDebugData(); |
| 214 | } |
| 215 | |
| 216 | void FallingGearsApp::drawInfo() |
| 217 | { |
nothing calls this directly
no test coverage detected