| 1221 | ///////////////////////////////////////////////////////////////////////////////////////// |
| 1222 | |
| 1223 | PX_FORCE_INLINE PxF32 computeSign(const PxF32 f) |
| 1224 | { |
| 1225 | return physx::intrinsics::fsel(f, physx::intrinsics::fsel(-f, 0.0f, 1.0f), -1.0f); |
| 1226 | } |
| 1227 | |
| 1228 | |
| 1229 | ///////////////////////////////////////////////////////////////////////////////////////// |
no test coverage detected