#pragma once namespace J3ML::Units { template class Rotation { T GetDegrees() const; T GetRadians() const; void SetDegrees(T val); void SetRadians(T val); }; using Rotationf = Rotation; using Rotationd = Rotation; }