| 37 | #define DEFINE_VALUE_TO_STRING(x) DEFINE_TO_STRING(x) |
| 38 | |
| 39 | Simulation::Simulation() |
| 40 | : mSimulation() |
| 41 | , mSDFCollisionSystem() |
| 42 | { |
| 43 | EI_Device* pDevice = GetDevice(); |
| 44 | |
| 45 | // mSimulation = new TressFXSimulation(); |
| 46 | mSimulation.Initialize(pDevice); |
| 47 | mSDFCollisionSystem.Initialize(pDevice); |
| 48 | } |
| 49 | |
| 50 | void Simulation::StartSimulation( |
| 51 | double fTime, |
nothing calls this directly
no test coverage detected