| 69 | /** Normalizes the angle in radians between [-pi and pi]. */ |
| 70 | template <typename T> |
| 71 | T NormalizeAngle(const T &Angle) |
| 72 | { |
| 73 | return NormalizeCustom(Angle, M_PI); |
| 74 | } |
| 75 | |
| 76 | template <typename T, int Dim> |
| 77 | VectorT<T, Dim> NormalizeAngleVector(const VectorT<T, Dim> &Angle) |
no test coverage detected