| 303 | } |
| 304 | |
| 305 | Sq::PrunerData NpShapeManager::findSceneQueryData(const NpShape& shape) const |
| 306 | { |
| 307 | const PxU32 index = mShapes.find(&shape); |
| 308 | PX_ASSERT(index!=0xffffffff); |
| 309 | PX_ASSERT(!isSqCompound()); // used in cases we know it is not a compound |
| 310 | |
| 311 | return getPrunerData(index); |
| 312 | } |
| 313 | |
| 314 | |
| 315 | Sq::PrunerData NpShapeManager::findSceneQueryData(const NpShape& shape, Sq::PrunerCompoundId& compoundId) const |
no test coverage detected