55 result.m_angleInRAD = angleInRAD;
68 result.m_angleInRAD = qDegreesToRadians(angleInDEG);
85 [[nodiscard]] Q_INVOKABLE
bool isFinite()
const
87 return std::isfinite(m_angleInRAD);
99 result.m_angleInRAD = m_angleInRAD + rhs.m_angleInRAD;
112 result.m_angleInRAD = m_angleInRAD - rhs.m_angleInRAD;
136 [[nodiscard]] Q_INVOKABLE
double cos()
const
138 return std::cos(m_angleInRAD);
145 [[nodiscard]] Q_INVOKABLE
double sin()
const
147 return std::sin(m_angleInRAD);
158 result.m_angleInRAD = std::asin(arg);
166 [[nodiscard]] Q_INVOKABLE QString
toClock()
const;
172 [[nodiscard]] Q_INVOKABLE
double toDEG()
const
174 if (!qIsFinite(m_angleInRAD)) {
178 auto d = std::fmod(qRadiansToDegrees(m_angleInRAD), 360.0);
189 [[nodiscard]] Q_INVOKABLE
double toRAD()
const
196 double m_angleInRAD{qQNaN()};
Convenience class for angle computations.
Q_INVOKABLE bool operator==(const Units::Angle &rhs) const =default
Comparison: equal.
static Q_INVOKABLE Units::Angle nan()
Constructs an invalid angle.
static Q_INVOKABLE Units::Angle asin(double arg)
Arcsine of a dimension-less number as an angle.
Q_INVOKABLE bool operator!=(const Units::Angle &rhs) const =default
Comparison: not equal.
Q_INVOKABLE bool isFinite() const
Checks if the angle is valid.
Q_INVOKABLE double sin() const
Sine of an angle, as a dimension-less number.
Q_INVOKABLE double cos() const
Cosine of an angle, as a dimension-less number.
static Q_INVOKABLE Units::Angle fromRAD(double angleInRAD)
Constructs an angle.
static Q_INVOKABLE Units::Angle fromDEG(double angleInDEG)
Constructs an angle.
Q_INVOKABLE double toRAD() const
Convert angle to radian.
Q_INVOKABLE Units::Angle operator+(Units::Angle rhs) const
Sum of two angles.
Q_INVOKABLE double toDEG() const
Convert angle to degrees.
Q_INVOKABLE QString toClock() const
Convert angle to clock position.
Q_INVOKABLE Units::Angle operator-(Units::Angle rhs) const
Difference of two angles.
Conversion between units used in aviation.