| 984 | } |
| 985 | |
| 986 | void NpScene::removeArticulation(PxArticulationBase& articulation, bool wakeOnLostTouch) |
| 987 | { |
| 988 | PX_PROFILE_ZONE("API.removeArticulation", getContextId()); |
| 989 | NP_WRITE_CHECK(this); |
| 990 | |
| 991 | if (removeFromSceneCheck(this, articulation.getScene(), "PxScene::removeArticulation(): Articulation")) |
| 992 | { |
| 993 | NpArticulation& npa = static_cast<NpArticulation&>(articulation); |
| 994 | removeArticulationInternal(npa, wakeOnLostTouch, true); |
| 995 | } |
| 996 | } |
| 997 | |
| 998 | void NpScene::removeArticulationInternal(PxArticulationBase& npa, bool wakeOnLostTouch, bool removeFromAggregate) |
| 999 | { |
no test coverage detected