| 2580 | |
| 2581 | #if PX_CHECKED |
| 2582 | void NpScene::checkPositionSanity(const PxRigidActor& a, const PxTransform& pose, const char* fnName) const |
| 2583 | { |
| 2584 | if(!mSanityBounds.contains(pose.p)) |
| 2585 | Ps::getFoundation().error(PxErrorCode::eDEBUG_WARNING, __FILE__, __LINE__, |
| 2586 | "%s: actor pose for %lp is outside sanity bounds\n", fnName, &a); |
| 2587 | } |
| 2588 | #endif |
| 2589 | |
| 2590 | namespace |
no test coverage detected