| 34 | #include "BulletSoftBody/btSoftRigidDynamicsWorld.h" |
| 35 | |
| 36 | tgSimViewGraphics::tgSimViewGraphics(tgWorld& world, |
| 37 | double stepSize, |
| 38 | double renderRate) : |
| 39 | tgSimView(world, stepSize, renderRate) |
| 40 | { |
| 41 | /// @todo figure out a good time to delete this |
| 42 | gDebugDrawer = new tgGLDebugDrawer(); |
| 43 | // Supress compiler warning for bullet's unused variable |
| 44 | (void) btInfinityMask; |
| 45 | } |
| 46 | |
| 47 | tgSimViewGraphics::~tgSimViewGraphics() |
| 48 | { |
nothing calls this directly
no outgoing calls
no test coverage detected