| 88 | |
| 89 | template <typename T, int Dim> |
| 90 | VectorT<T, Dim> NormalizeAngleVelocityVector(const VectorT<T, Dim> &AngleVel, const double dt) |
| 91 | { |
| 92 | return NormalizeCustomVector(AngleVel, M_PI / dt); |
| 93 | } |
| 94 | |
| 95 | } |
| 96 |
nothing calls this directly
no test coverage detected