| 51 | using namespace Ps::aos; |
| 52 | |
| 53 | static PX_FORCE_INLINE void transformNoEmptyTest(Vec3p& c, Vec3p& ext, const PxMat33& rot, const PxVec3& pos, const CenterExtentsPadded& bounds) |
| 54 | { |
| 55 | c = rot.transform(bounds.mCenter) + pos; |
| 56 | ext = Cm::basisExtent(rot.column0, rot.column1, rot.column2, bounds.mExtents); |
| 57 | } |
| 58 | |
| 59 | // PT: this one may have duplicates in GuBV4_BoxSweep_Internal.h & GuBV4_Raycast.cpp |
| 60 | static PX_FORCE_INLINE Vec4V multiply3x3V(const Vec4V p, const PxMat33Padded& mat_Padded) |
no test coverage detected