Removed shorthand Deg/Rad aliases... (see below)
This commit is contained in:
parent
d212db2783
commit
2b5f5cd175
5
Angle.h
5
Angle.h
@ -32,14 +32,11 @@ public:
|
||||
/// @param degrees the angle in degrees
|
||||
/// @return The angle value
|
||||
static AngleOf<T> Degrees(float degrees);
|
||||
/// @brief Short-hand Deg alias for the Degrees function
|
||||
/// @brief Creates an angle in radians
|
||||
/// @param radians the angle in radians
|
||||
/// @return The angle value
|
||||
constexpr static AngleOf<T> (*Deg)(float degrees) = &Degrees;
|
||||
static AngleOf<T> Radians(float radians);
|
||||
/// @brief Short-hand Rad alias for the Radians function
|
||||
// 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user