Enroute Flight Navigation
A navigation app for VFR pilots
Angle.h
1/***************************************************************************
2 * Copyright (C) 2019-2021 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QObject>
24#include <QQmlEngine>
25#include <QtMath>
26
33
34namespace Units {
35
41 class Angle {
42 Q_GADGET
43 QML_VALUE_TYPE(angle)
44
45 public:
52 Q_INVOKABLE static Units::Angle fromRAD(double angleInRAD)
53 {
54 Angle result;
55 result.m_angleInRAD = angleInRAD;
56 return result;
57 }
58
65 Q_INVOKABLE static Units::Angle fromDEG(double angleInDEG)
66 {
67 Angle result;
68 result.m_angleInRAD = qDegreesToRadians(angleInDEG);
69 return result;
70 }
71
76 Q_INVOKABLE static Units::Angle nan()
77 {
78 return {};
79 }
80
85 [[nodiscard]] Q_INVOKABLE bool isFinite() const
86 {
87 return std::isfinite(m_angleInRAD);
88 }
89
96 Q_INVOKABLE Units::Angle operator+(Units::Angle rhs) const
97 {
98 Angle result;
99 result.m_angleInRAD = m_angleInRAD + rhs.m_angleInRAD;
100 return result;
101 }
102
109 Q_INVOKABLE Units::Angle operator-(Units::Angle rhs) const
110 {
111 Angle result;
112 result.m_angleInRAD = m_angleInRAD - rhs.m_angleInRAD;
113 return result;
114 }
115
122 [[nodiscard]] Q_INVOKABLE bool operator==(const Units::Angle& rhs) const = default;
123
130 [[nodiscard]] Q_INVOKABLE bool operator!=(const Units::Angle& rhs) const = default;
131
136 [[nodiscard]] Q_INVOKABLE double cos() const
137 {
138 return std::cos(m_angleInRAD);
139 }
140
145 [[nodiscard]] Q_INVOKABLE double sin() const
146 {
147 return std::sin(m_angleInRAD);
148 }
149
156 Q_INVOKABLE static Units::Angle asin(double arg) {
157 Angle result;
158 result.m_angleInRAD = std::asin(arg);
159 return result;
160 }
161
166 [[nodiscard]] Q_INVOKABLE QString toClock() const;
167
172 [[nodiscard]] Q_INVOKABLE double toDEG() const
173 {
174 if (!qIsFinite(m_angleInRAD)) {
175 return qQNaN();
176 }
177
178 auto d = std::fmod(qRadiansToDegrees(m_angleInRAD), 360.0);
179 if (d > 0) {
180 return d;
181}
182 return d+360.0;
183 }
184
189 [[nodiscard]] Q_INVOKABLE double toRAD() const
190 {
191 return m_angleInRAD;
192 }
193
194 private:
195 // Angle in Radians
196 double m_angleInRAD{qQNaN()};
197 };
198} // namespace Units
199
200// Declare meta types
201Q_DECLARE_METATYPE(Units::Angle)
Convenience class for angle computations.
Definition Angle.h:41
Q_INVOKABLE bool operator==(const Units::Angle &rhs) const =default
Comparison: equal.
static Q_INVOKABLE Units::Angle nan()
Constructs an invalid angle.
Definition Angle.h:76
static Q_INVOKABLE Units::Angle asin(double arg)
Arcsine of a dimension-less number as an angle.
Definition Angle.h:156
Q_INVOKABLE bool operator!=(const Units::Angle &rhs) const =default
Comparison: not equal.
Q_INVOKABLE bool isFinite() const
Checks if the angle is valid.
Definition Angle.h:85
Q_INVOKABLE double sin() const
Sine of an angle, as a dimension-less number.
Definition Angle.h:145
Q_INVOKABLE double cos() const
Cosine of an angle, as a dimension-less number.
Definition Angle.h:136
static Q_INVOKABLE Units::Angle fromRAD(double angleInRAD)
Constructs an angle.
Definition Angle.h:52
static Q_INVOKABLE Units::Angle fromDEG(double angleInDEG)
Constructs an angle.
Definition Angle.h:65
Q_INVOKABLE double toRAD() const
Convert angle to radian.
Definition Angle.h:189
Q_INVOKABLE Units::Angle operator+(Units::Angle rhs) const
Sum of two angles.
Definition Angle.h:96
Q_INVOKABLE double toDEG() const
Convert angle to degrees.
Definition Angle.h:172
Q_INVOKABLE QString toClock() const
Convert angle to clock position.
Q_INVOKABLE Units::Angle operator-(Units::Angle rhs) const
Difference of two angles.
Definition Angle.h:109
Conversion between units used in aviation.
Definition Angle.h:34