mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 21:56:43 +08:00
90 lines
2.8 KiB
C++
90 lines
2.8 KiB
C++
/* Copyright (C) 2013 VATSIM Community / contributors
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef BLACKMISC_PQANGLE_H
|
|
#define BLACKMISC_PQANGLE_H
|
|
#include "blackmisc/pqphysicalquantity.h"
|
|
#include "blackmisc/mathematics.h"
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace PhysicalQuantities
|
|
{
|
|
|
|
/*!
|
|
* \brief Physical unit angle (radians, degrees)
|
|
*/
|
|
class CAngle : public CPhysicalQuantity<CAngleUnit, CAngle>
|
|
{
|
|
public:
|
|
//! Default constructor
|
|
CAngle() : CPhysicalQuantity(0, CAngleUnit::defaultUnit()) {}
|
|
|
|
//! Init by double value
|
|
CAngle(double value, const CAngleUnit &unit): CPhysicalQuantity(value, unit) {}
|
|
|
|
//! \copydoc CPhysicalQuantity(const QString &unitString)
|
|
CAngle(const QString &unitString) : CPhysicalQuantity(unitString) {}
|
|
|
|
/*!
|
|
* \brief Init as sexagesimal degrees, minutes, seconds
|
|
* The sign of all parameters must be the same, either all positive or all negative.
|
|
* \param degrees
|
|
* \param minutes
|
|
* \param seconds
|
|
*/
|
|
CAngle(int degrees, int minutes, double seconds) :
|
|
CPhysicalQuantity(
|
|
degrees + minutes / 100.0 + seconds / 10000.0,
|
|
CAngleUnit::sexagesimalDeg()) {}
|
|
|
|
/*!
|
|
* \brief Init as sexagesimal degrees, minutes
|
|
* The sign of both parameters must be the same, either both positive or both negative.
|
|
* \param degrees
|
|
* \param minutes
|
|
*/
|
|
CAngle(int degrees, double minutes) :
|
|
CPhysicalQuantity(
|
|
degrees + minutes / 100.0,
|
|
CAngleUnit::sexagesimalDegMin()) {}
|
|
|
|
//! \copydoc CValueObject::toQVariant
|
|
virtual QVariant toQVariant() const override
|
|
{
|
|
return QVariant::fromValue(*this);
|
|
}
|
|
|
|
/*!
|
|
* \brief Virtual destructor
|
|
*/
|
|
virtual ~CAngle() {}
|
|
|
|
/*!
|
|
* \brief Value as factor of PI (e.g. 0.5PI)
|
|
* \return
|
|
*/
|
|
double piFactor() const
|
|
{
|
|
return BlackMisc::Math::CMath::round(this->value(CAngleUnit::rad()) / BlackMisc::Math::CMath::PI() , 6);
|
|
}
|
|
|
|
/*!
|
|
* \brief PI as convenience method
|
|
* \return
|
|
*/
|
|
static const double &PI()
|
|
{
|
|
return BlackMisc::Math::CMath::PI();
|
|
}
|
|
};
|
|
|
|
} // namespace
|
|
} // namespace
|
|
|
|
Q_DECLARE_METATYPE(BlackMisc::PhysicalQuantities::CAngle)
|
|
|
|
#endif // guard
|