| 1719 | } |
| 1720 | |
| 1721 | void Sc::Scene::addConstraint(ConstraintCore& constraint, RigidCore* body0, RigidCore* body1) |
| 1722 | { |
| 1723 | ConstraintSim* sim = mConstraintSimPool->construct(constraint, body0, body1, *this); |
| 1724 | PX_UNUSED(sim); |
| 1725 | |
| 1726 | mConstraints.insert(&constraint); |
| 1727 | } |
| 1728 | |
| 1729 | void Sc::Scene::removeConstraint(ConstraintCore& constraint) |
| 1730 | { |
no test coverage detected