diff --git a/Angle.h b/Angle.h index 501a2dd..e6e81a5 100644 --- a/Angle.h +++ b/Angle.h @@ -33,13 +33,13 @@ public: /// @return The angle value static AngleOf Degrees(float degrees); /// @brief Short-hand Deg alias for the Degrees function - constexpr static auto Deg = Degrees; + // constexpr static auto Deg = Degrees; /// @brief Creates an angle in radians /// @param radians the angle in radians /// @return The angle value static AngleOf Radians(float radians); /// @brief Short-hand Rad alias for the Radians function - constexpr static auto Rad = Radians; + // constexpr static auto Rad = Radians; /// @brief Creates an angle from a raw value /// @param rawValue the raw value to use for the angle /// @return The the angle @@ -214,7 +214,6 @@ private: AngleOf(T rawValue); }; -// using Angle = AngleOf; using AngleSingle = AngleOf; using Angle16 = AngleOf; using Angle8 = AngleOf;