#include "all_includes.hh" float Angle::r2d(float rad) { return rad / Pi * 180; } float Angle::d2r(float deg) { return deg / 180 * Pi; }