GeographicLib 2.5
AuxAngle.cpp
Go to the documentation of this file.
1/**
2 * \file AuxAngle.cpp
3 * \brief Implementation for the GeographicLib::AuxAngle class.
4 *
5 * This file is an implementation of the methods described in
6 * - C. F. F. Karney,
7 * <a href="https://doi.org/10.1080/00396265.2023.2217604">
8 * On auxiliary latitudes,</a>
9 * Survey Review 56(395), 165--180 (2024);
10 * preprint
11 * <a href="https://arxiv.org/abs/2212.05818">arXiv:2212.05818</a>.
12 * .
13 * Copyright (c) Charles Karney (2022-2023) <karney@alum.mit.edu> and licensed
14 * under the MIT/X11 License. For more information, see
15 * https://geographiclib.sourceforge.io/
16 **********************************************************************/
17
19
20namespace GeographicLib {
21
22 using namespace std;
23
27
29 using std::isnan; // Needed for Centos 7, ubuntu 14
30 if ( isnan( tan() ) ||
31 (fabs(_y) > numeric_limits<real>::max()/2 &&
32 fabs(_x) > numeric_limits<real>::max()/2) )
33 // deal with
34 // (0,0), (inf,inf), (nan,nan), (nan,x), (y,nan), (toobig,toobig)
35 return NaN();
36 real r = hypot(_y, _x),
37 y = _y/r, x = _x/r;
38 // deal with r = inf, then one of y,x becomes 1
39 if (isnan(y)) y = copysign(real(1), _y);
40 if (isnan(x)) x = copysign(real(1), _x);
41 return AuxAngle(y, x);
42 }
43
45 return AuxAngle(copysign(y(), p.y()), copysign(x(), p.x()));
46 }
47
49 // Do nothing if p.tan() == 0 to preserve signs of y() and x()
50 if (p.tan() != 0) {
51 real x = _x * p._x - _y * p._y;
52 _y = _y * p._x + _x * p._y;
53 _x = x;
54 }
55 return *this;
56 }
57
58} // namespace GeographicLib
Header for the GeographicLib::AuxAngle class.
An accurate representation of angles.
Definition AuxAngle.hpp:47
Math::real y() const
Definition AuxAngle.hpp:70
Math::real x() const
Definition AuxAngle.hpp:75
AuxAngle normalized() const
Definition AuxAngle.cpp:28
AuxAngle & operator+=(const AuxAngle &p)
Definition AuxAngle.cpp:48
static AuxAngle NaN()
Definition AuxAngle.cpp:24
Math::real tan() const
Definition AuxAngle.hpp:113
AuxAngle copyquadrant(const AuxAngle &p) const
Definition AuxAngle.cpp:44
static T NaN()
Definition Math.cpp:277
Namespace for GeographicLib.