48 result.m_timeInS = timeInH*Seconds_per_Hour;
61 result.m_timeInS = timeInMS/1000.0;
73 result.m_timeInS = timeInS;
81 [[nodiscard]] Q_INVOKABLE
bool isFinite()
const
83 return std::isfinite(m_timeInS);
92 return m_timeInS < 0.0;
103 m_timeInS += other.m_timeInS;
119 [[nodiscard]] Q_INVOKABLE
double toS()
const
128 [[nodiscard]] Q_INVOKABLE
double toM()
const
130 return m_timeInS / Seconds_per_Minute;
137 [[nodiscard]] Q_INVOKABLE
double toH()
const
139 return m_timeInS / Seconds_per_Hour;
149 static constexpr double Seconds_per_Minute = 60.0;
150 static constexpr double Seconds_per_Hour = 60.0 * 60.0;
153 double m_timeInS{qQNaN()};
Convenience class for time computations.
Q_INVOKABLE QString toHoursAndMinutes() const
Convert time to string.
Q_INVOKABLE Units::Timespan & operator+=(Units::Timespan other)
Add time to this time.
Q_INVOKABLE bool isNegative() const
Checks if the time is negative.
Q_INVOKABLE double toM() const
Convert time to minutes.
Q_INVOKABLE double toS() const
Convert time to seconds.
Q_INVOKABLE std::partial_ordering operator<=>(const Units::Timespan &rhs) const =default
Comparison.
Q_INVOKABLE bool isFinite() const
Checks if the time is valid.
static auto fromH(double timeInH) -> Timespan
Constructs a time.
static Timespan fromMS(double timeInMS)
Constructs a time.
Q_INVOKABLE double toH() const
Convert time to hours.
static auto fromS(double timeInS) -> Timespan
Constructs a time.
Conversion between units used in aviation.