| 495 | /// \related Quaternion |
| 496 | |
| 497 | inline float InverseMag(const Quaternion& q) |
| 498 | { |
| 499 | return (InverseSqrt(SquaredMag(q.xyz) + q.w * q.w)); |
| 500 | } |
| 501 | |
| 502 | /// \brief Returns the squared magnitude of a quaternion. |
| 503 | /// \related Quaternion |
nothing calls this directly
no test coverage detected