LSST Applications g0f08755f38+9c285cab97,g1635faa6d4+13f3999e92,g1653933729+a8ce1bb630,g1a0ca8cf93+bf6eb00ceb,g28da252d5a+0829b12dee,g29321ee8c0+5700dc9eac,g2bbee38e9b+9634bc57db,g2bc492864f+9634bc57db,g2cdde0e794+c2c89b37c4,g3156d2b45e+41e33cbcdc,g347aa1857d+9634bc57db,g35bb328faa+a8ce1bb630,g3a166c0a6a+9634bc57db,g3e281a1b8c+9f2c4e2fc3,g414038480c+077ccc18e7,g41af890bb2+fde0dd39b6,g5fbc88fb19+17cd334064,g781aacb6e4+a8ce1bb630,g80478fca09+55a9465950,g82479be7b0+d730eedb7d,g858d7b2824+9c285cab97,g9125e01d80+a8ce1bb630,g9726552aa6+10f999ec6a,ga5288a1d22+2a84bb7594,gacf8899fa4+c69c5206e8,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gc28159a63d+9634bc57db,gcf0d15dbbd+4b7d09cae4,gda3e153d99+9c285cab97,gda6a2b7d83+4b7d09cae4,gdaeeff99f8+1711a396fd,ge2409df99d+5e831397f4,ge79ae78c31+9634bc57db,gf0baf85859+147a0692ba,gf3967379c6+41c94011de,gf3fb38a9a8+8f07a9901b,gfb92a5be7c+9c285cab97,w.2024.46
LSST Data Management Base Package
|
UnitVector3d
is a unit vector in ℝ³ with components stored in double precision.
More...
#include <UnitVector3d.h>
Public Member Functions | |
UnitVector3d () | |
The default constructor creates a unit vector equal to (1, 0, 0). | |
UnitVector3d (UnitVector3d const &v)=default | |
UnitVector3d (LonLat const &p) | |
This constructor creates the unit vector corresponding to the point p on the unit sphere. | |
UnitVector3d (Angle lon, Angle lat) | |
This constructor creates a unit vector corresponding to the given spherical coordinates. | |
operator Vector3d const & () const | |
This conversion operator returns a const reference to the underlying Vector3d. | |
bool | operator== (Vector3d const &v) const |
bool | operator!= (Vector3d const &v) const |
double const * | getData () const |
getData returns a pointer to the 3 components of this unit vector. | |
double | operator() (int i) const |
The function call operator returns the i -th component of this vector. | |
double | x () const |
double | y () const |
double | z () const |
double | dot (Vector3d const &v) const |
dot returns the inner product of this unit vector and v . | |
Vector3d | cross (Vector3d const &v) const |
cross returns the cross product of this unit vector and v . | |
Vector3d | robustCross (UnitVector3d const &v) const |
a.robustCross(b) is (b + a).cross(b - a) - twice the cross product of a and b. | |
UnitVector3d | operator- () const |
The unary minus operator negates every component of this unit vector. | |
Vector3d | operator* (double s) const |
The multiplication operator returns the component-wise product of this unit vector with scalar s . | |
Vector3d | operator/ (double s) const |
The division operator returns the component-wise quotient of this unit vector with scalar s . | |
Vector3d | operator+ (Vector3d const &v) const |
The addition operator returns the sum of this unit vector and v . | |
Vector3d | operator- (Vector3d const &v) const |
The subtraction operator returns the difference between this unit vector and v . | |
Vector3d | cwiseProduct (Vector3d const &v) const |
cwiseProduct returns the component-wise product of this unit vector and v . | |
UnitVector3d | rotatedAround (UnitVector3d const &k, Angle a) const |
rotatedAround returns a copy of this unit vector, rotated around the unit vector k by angle a according to the right hand rule. | |
UnitVector3d (Vector3d const &v) | |
UnitVector3d (double x, double y, double z) | |
Static Public Member Functions | |
static UnitVector3d | orthogonalTo (Vector3d const &v) |
orthogonalTo returns an arbitrary unit vector that is orthogonal to v. | |
static UnitVector3d | orthogonalTo (Vector3d const &v1, Vector3d const &v2) |
orthogonalTo returns the unit vector n orthogonal to both v1 and v2 and with the same direction as the cross product of v1 and v2. | |
static UnitVector3d | northFrom (Vector3d const &v) |
northFrom returns the unit vector orthogonal to v that points "north" from v. | |
static UnitVector3d | orthogonalTo (NormalizedAngle const &a) |
orthogonalTo returns the unit vector orthogonal to the meridian with the given longitude. | |
static UnitVector3d | fromNormalized (Vector3d const &v) |
fromNormalized returns the unit vector equal to v, which is assumed to be normalized. | |
static UnitVector3d | fromNormalized (double x, double y, double z) |
fromNormalized returns the unit vector with the given components, which are assumed to correspond to those of a normalized vector. | |
static UnitVector3d | X () |
static UnitVector3d | Y () |
static UnitVector3d | Z () |
UnitVector3d
is a unit vector in ℝ³ with components stored in double precision.
Conceptually, a UnitVector3d is a Vector3d. However, it does not inherit from Vector3d because all its mutators must correspond to isometries. Propagating this restriction to the Vector3d base class would make the base class unduly difficult to use. Furthermore, the base class assignment operator would have to be made virtual - otherwise it would be possible to cast a UnitVector3d reference to a Vector3d reference and then assign components yielding non-unit norm. For a class this compact and performance critical, the addition of a vtable pointer per instance and the potential for virtual call overhead on assignment is deemed prohibitive.
This class supports conversion from longitude and latitude angles. All methods that accept a LonLat
or equivalent angles shall convert from longitude/latitude to a unit vector according to the following conventions:
Definition at line 62 of file UnitVector3d.h.
|
inline |
The default constructor creates a unit vector equal to (1, 0, 0).
Definition at line 113 of file UnitVector3d.h.
|
default |
|
inlineexplicit |
This constructor creates a unit vector with the given direction.
Definition at line 119 of file UnitVector3d.h.
|
inline |
This constructor creates a unit vector with the given direction.
Definition at line 123 of file UnitVector3d.h.
|
inlineexplicit |
This constructor creates the unit vector corresponding to the point p
on the unit sphere.
Definition at line 130 of file UnitVector3d.h.
This constructor creates a unit vector corresponding to the given spherical coordinates.
Definition at line 70 of file UnitVector3d.cc.
cross
returns the cross product of this unit vector and v
.
Definition at line 162 of file UnitVector3d.h.
cwiseProduct
returns the component-wise product of this unit vector and v
.
Definition at line 194 of file UnitVector3d.h.
|
inline |
dot
returns the inner product of this unit vector and v
.
Definition at line 159 of file UnitVector3d.h.
|
inlinestatic |
fromNormalized
returns the unit vector with the given components, which are assumed to correspond to those of a normalized vector.
Use with caution - this assumption is not verified!
Definition at line 96 of file UnitVector3d.h.
|
inlinestatic |
fromNormalized
returns the unit vector equal to v, which is assumed to be normalized.
Use with caution - this assumption is not verified!
Definition at line 89 of file UnitVector3d.h.
|
inline |
getData
returns a pointer to the 3 components of this unit vector.
Definition at line 147 of file UnitVector3d.h.
|
static |
northFrom
returns the unit vector orthogonal to v that points "north" from v.
More precisely, it returns a unit vector orthogonal to v that lies in the plane defined by v, the north pole (0, 0, 1), and the origin. If v is colinear with the z axis, then (-1, 0, 0) is returned if v points north, and (1, 0, 0) is returned if v points south.
Definition at line 58 of file UnitVector3d.cc.
|
inline |
This conversion operator returns a const reference to the underlying Vector3d.
It allows a UnitVector3d to transparently replace a Vector3d as an argument in most function calls.
Definition at line 141 of file UnitVector3d.h.
|
inline |
Definition at line 144 of file UnitVector3d.h.
|
inline |
The function call operator returns the i
-th component of this vector.
Definition at line 150 of file UnitVector3d.h.
|
inline |
The multiplication operator returns the component-wise product of this unit vector with scalar s
.
Definition at line 179 of file UnitVector3d.h.
The addition operator returns the sum of this unit vector and v
.
Definition at line 186 of file UnitVector3d.h.
|
inline |
The unary minus operator negates every component of this unit vector.
Definition at line 173 of file UnitVector3d.h.
The subtraction operator returns the difference between this unit vector and v
.
Definition at line 190 of file UnitVector3d.h.
|
inline |
The division operator returns the component-wise quotient of this unit vector with scalar s
.
Definition at line 183 of file UnitVector3d.h.
|
inline |
Definition at line 143 of file UnitVector3d.h.
|
inlinestatic |
orthogonalTo
returns the unit vector orthogonal to the meridian with the given longitude.
Definition at line 83 of file UnitVector3d.h.
|
static |
orthogonalTo
returns an arbitrary unit vector that is orthogonal to v.
Definition at line 41 of file UnitVector3d.cc.
|
static |
orthogonalTo
returns the unit vector n orthogonal to both v1 and v2 and with the same direction as the cross product of v1 and v2.
If v1 and v2 are nearly (anti)parallel, then an arbitrary unit vector orthogonal to v1 is returned.
Definition at line 48 of file UnitVector3d.cc.
|
inline |
a.robustCross(b)
is (b + a).cross(b - a)
- twice the cross product of a and b.
The result is almost orthogonal to a and b even for nearly (anti-)parallel unit vectors. The idea comes from the Google S2 library.
Definition at line 168 of file UnitVector3d.h.
|
inline |
rotatedAround
returns a copy of this unit vector, rotated around the unit vector k
by angle a
according to the right hand rule.
Definition at line 200 of file UnitVector3d.h.
|
inlinestatic |
Definition at line 100 of file UnitVector3d.h.
|
inline |
Definition at line 152 of file UnitVector3d.h.
|
inlinestatic |
Definition at line 104 of file UnitVector3d.h.
|
inline |
Definition at line 154 of file UnitVector3d.h.
|
inlinestatic |
Definition at line 108 of file UnitVector3d.h.
|
inline |
Definition at line 156 of file UnitVector3d.h.