MCPcopy Create free account
hub / github.com/TUC-ProAut/libRSF / NormalizeAngle

Function NormalizeAngle

include/NormalizeAngle.h:71–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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)

Callers 4

RelativeMotion2DFunction · 0.85
operator()Method · 0.85
EvaluateMethod · 0.85
predictMethod · 0.85

Calls 1

NormalizeCustomFunction · 0.85

Tested by

no test coverage detected