45 constexpr explicit AAngleRadians(
float radians)
noexcept: mValue(radians) {}
48 constexpr float radians()
const noexcept {
53 constexpr float degrees()
const noexcept {
54 return glm::degrees(mValue);
106constexpr inline AAngleRadians operator""_deg(
unsigned long long v)
111inline std::ostream& operator<<(std::ostream& o,
const AAngleRadians& value) {
112 o << value.degrees() <<
"deg";
Strong type used to store angle in radians.
Definition: AAngleRadians.h:42
Represents a Unicode character string.
Definition: AString.h:37