Simplifies the calls to angle-related functions such as angle wrapping, degree-radian conversions, rotation matrix representations.
Include the following at the top of any translation unit that uses geometry functions or classes.
You will also need to link to -lecl_geometry.
For those who prefer to use function based libraries, the ecl::wrap_angle function can be used to operate on simple float types.
For conversions:
The angle class is a convenience class that automates storage and angle wrapping for you. It uses by default, radians (which any good engineer/mathematician should default to!). Take this into consideration if using it where speed is of the essence. That is, don't use Angle and then do all your calculations in degrees - there will be alot of copying!
- src/test/angles.cpp