| 75 | |
| 76 | template <typename T, int Dim> |
| 77 | VectorT<T, Dim> NormalizeAngleVector(const VectorT<T, Dim> &Angle) |
| 78 | { |
| 79 | return NormalizeCustomVector(Angle, M_PI); |
| 80 | } |
| 81 | |
| 82 | /** normalize turn rate */ |
| 83 | template <typename T> |
nothing calls this directly
no test coverage detected