| 5442 | } |
| 5443 | |
| 5444 | void Sc::Scene::addToLostTouchList(BodySim* body1, BodySim* body2) |
| 5445 | { |
| 5446 | PX_ASSERT(body1 != 0); |
| 5447 | PX_ASSERT(body2 != 0); |
| 5448 | SimpleBodyPair p = { body1, body2, body1->getRigidID(), body2->getRigidID() }; |
| 5449 | mLostTouchPairs.pushBack(p); |
| 5450 | } |
| 5451 | |
| 5452 | void Sc::Scene::initDominanceMatrix() |
| 5453 | { |
no test coverage detected