| 339 | } |
| 340 | |
| 341 | void NpFactory::releaseArticulationJointToPool(NpArticulationJoint& articulationJoint) |
| 342 | { |
| 343 | PX_ASSERT(articulationJoint.getBaseFlags() & PxBaseFlag::eOWNS_MEMORY); |
| 344 | Ps::Mutex::ScopedLock lock(mArticulationJointPoolLock); |
| 345 | mArticulationJointPool.destroy(&articulationJoint); |
| 346 | } |
| 347 | |
| 348 | NpArticulationJointReducedCoordinate* NpFactory::createNpArticulationJointRC(NpArticulationLink& parent, const PxTransform& parentFrame, NpArticulationLink& child, const PxTransform& childFrame) |
| 349 | { |
no test coverage detected