|
LSST Applications g009b5efdf7+69b43e4e42,g0530b470b1+69b43e4e42,g1011452fe8+91250f09a0,g131b30d954+f6e951a35a,g1e66b94187+ae119455a0,g235c05d50d+ce3a83a8de,g2526fcf3cb+9e89abb30c,g2959009a90+3139df73c6,g2adfe936b5+69b43e4e42,g2aea266057+ae119455a0,g2f36b36c37+fa3e2ed20a,g315bf1e6db+2b1636f0b8,g3a7e09fba3+ffb1c1e880,g3f8e1907dc+353a89de06,g41a93ceb71+292128a2b8,g4230fac9de+4fc97e16b9,g498fc93c42+292128a2b8,g4e8ce4af8a+d61c1479ad,g4f742bbdcc+69b43e4e42,g51277c4d12+ae119455a0,g807e3ba568+3106ab47e8,g8479130295+f44088696a,g883b199ddb+292128a2b8,gb469cb74ca+da2db42413,gb673666cb6+6a8a80267a,gb94f486bb8+12ae5d351f,gbdd7a450b0+7fcb11f810,gca804b0f43+f0a1800e64,gd25bd4485f+ae119455a0,gd4112516d0+69b43e4e42,gd5d1ca8e18+f0a1800e64,gd630573b98+69b43e4e42,gd8f36429a2+08dbe83c24,gf53ffbb2c7+83d25aaa19,w.2023.24
LSST Data Management Base Package
|
#include <cmath>#include <iostream>#include <type_traits>#include "lsst/sphgeom/Angle.h"#include "boost/math/constants/constants.hpp"Go to the source code of this file.
Classes | |
| class | lsst::geom::AngleUnit |
A class used to convert scalar POD types such as double to Angle. More... | |
| class | lsst::geom::Angle |
| A class representing an angle. More... | |
| struct | std::hash< lsst::geom::AngleUnit > |
| struct | std::hash< lsst::geom::Angle > |
Namespaces | |
| namespace | lsst |
| namespace | lsst::geom |
| namespace | std |
| STL namespace. | |
Macros | |
| #define | ANGLE_OPUP_TYPE(OP, TYPE) |
| #define | ANGLE_COMP(OP) constexpr bool operator OP(const Angle& rhs) const noexcept { return _val OP rhs._val; } |
| #define | ANGLE_OP(OP) |
| #define | ANGLE_OP_TYPE(OP, TYPE) |
Functions | |
| constexpr double | lsst::geom::degToRad (double x) noexcept |
| constexpr double | lsst::geom::radToDeg (double x) noexcept |
| constexpr double | lsst::geom::radToArcsec (double x) noexcept |
| constexpr double | lsst::geom::radToMas (double x) noexcept |
| constexpr double | lsst::geom::arcsecToRad (double x) noexcept |
| constexpr double | lsst::geom::masToRad (double x) noexcept |
| constexpr Angle | lsst::geom::operator+ (Angle a, Angle d) noexcept |
| Sum of two angles. More... | |
| constexpr Angle | lsst::geom::operator- (Angle a, Angle d) noexcept |
| Difference of two angles. More... | |
| constexpr Angle | lsst::geom::operator* (Angle a, Angle d) noexcept |
| Product of two angles. More... | |
| constexpr Angle | lsst::geom::operator* (Angle a, double d) noexcept |
| Product of an angle and a scalar. More... | |
| constexpr Angle | lsst::geom::operator* (double d, Angle a) noexcept |
| constexpr Angle | lsst::geom::operator* (Angle a, int d) noexcept |
| constexpr Angle | lsst::geom::operator* (int d, Angle a) noexcept |
| constexpr Angle | lsst::geom::operator- (Angle angle) |
| An angle in the opposite sense. More... | |
| constexpr Angle | lsst::geom::operator/ (Angle a, int d) noexcept |
| Ratio of an angle and a scalar. More... | |
| constexpr Angle | lsst::geom::operator/ (Angle a, double d) noexcept |
| Ratio of an angle and a scalar. More... | |
| template<typename T > | |
| constexpr double | lsst::geom::operator/ (T const lhs, Angle rhs) noexcept=delete |
| std::ostream & | lsst::geom::operator<< (std::ostream &s, Angle a) |
| Print an Angle to a stream. More... | |
| template<typename T > | |
| constexpr bool | lsst::geom::isAngle (T) noexcept |
| Allow a user to check if they have an angle. More... | |
| template<typename T > | |
| constexpr Angle | lsst::geom::operator* (T lhs, AngleUnit rhs) noexcept |
| Use AngleUnit to convert a POD (e.g. int, double) to an Angle; e.g. 180*degrees. More... | |
Variables | |
| double constexpr | lsst::geom::PI = boost::math::constants::pi<double>() |
| The ratio of a circle's circumference to diameter. More... | |
| double constexpr | lsst::geom::TWOPI = boost::math::constants::pi<double>() * 2.0 |
| double constexpr | lsst::geom::HALFPI = boost::math::constants::pi<double>() * 0.5 |
| double constexpr | lsst::geom::ONE_OVER_PI = 1.0 / boost::math::constants::pi<double>() |
| double const | lsst::geom::SQRTPI = sqrt(boost::math::constants::pi<double>()) |
| double const | lsst::geom::INVSQRTPI = 1.0 / sqrt(boost::math::constants::pi<double>()) |
| double constexpr | lsst::geom::ROOT2 = boost::math::constants::root_two<double>() |
| AngleUnit constexpr | lsst::geom::radians = AngleUnit(1.0) |
| constant with units of radians More... | |
| AngleUnit constexpr | lsst::geom::degrees = AngleUnit(PI / 180.0) |
| constant with units of degrees More... | |
| AngleUnit constexpr | lsst::geom::hours = AngleUnit(PI * 15.0 / 180.0) |
| constant with units of hours More... | |
| AngleUnit constexpr | lsst::geom::arcminutes = AngleUnit(PI / 60 / 180.0) |
| constant with units of arcminutes More... | |
| AngleUnit constexpr | lsst::geom::arcseconds = AngleUnit(PI / 180.0 / 3600.0) |
| constant with units of arcseconds More... | |
| AngleUnit constexpr | lsst::geom::milliarcseconds |
| constant with units of milliarcseconds More... | |
| #define ANGLE_COMP | ( | OP | ) | constexpr bool operator OP(const Angle& rhs) const noexcept { return _val OP rhs._val; } |
| #define ANGLE_OP | ( | OP | ) |
| #define ANGLE_OP_TYPE | ( | OP, | |
| TYPE | |||
| ) |