LSST Applications 27.0.0,g0265f82a02+469cd937ee,g02d81e74bb+21ad69e7e1,g1470d8bcf6+cbe83ee85a,g2079a07aa2+e67c6346a6,g212a7c68fe+04a9158687,g2305ad1205+94392ce272,g295015adf3+81dd352a9d,g2bbee38e9b+469cd937ee,g337abbeb29+469cd937ee,g3939d97d7f+72a9f7b576,g487adcacf7+71499e7cba,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+df404f777f,g5a732f18d5+be83d3ecdb,g64a986408d+21ad69e7e1,g858d7b2824+21ad69e7e1,g8a8a8dda67+a6fc98d2e7,g99cad8db69+f62e5b0af5,g9ddcbc5298+d4bad12328,ga1e77700b3+9c366c4306,ga8c6da7877+71e4819109,gb0e22166c9+25ba2f69a1,gb6a65358fc+469cd937ee,gbb8dafda3b+69d3c0e320,gc07e1c2157+a98bf949bb,gc120e1dc64+615ec43309,gc28159a63d+469cd937ee,gcf0d15dbbd+72a9f7b576,gdaeeff99f8+a38ce5ea23,ge6526c86ff+3a7c1ac5f1,ge79ae78c31+469cd937ee,gee10cc3b42+a6fc98d2e7,gf1cff7945b+21ad69e7e1,gfbcc870c63+9a11dc8c8f
LSST Data Management Base Package
|
Namespaces | |
namespace | _healpixPixelization |
namespace | _yaml |
namespace | detail |
namespace | pixelization_abc |
namespace | python |
namespace | version |
Classes | |
class | Angle |
Angle represents an angle in radians. More... | |
class | AngleInterval |
AngleInterval represents closed intervals of arbitrary angles. More... | |
class | BigInteger |
BigInteger is an arbitrary precision signed integer class. More... | |
class | Box |
Box represents a rectangle in spherical coordinate space that contains its boundary. More... | |
class | Box3d |
Box3d represents a box in ℝ³. More... | |
class | Chunker |
Chunker subdivides the unit sphere into longitude-latitude boxes. More... | |
class | Circle |
Circle is a circular region on the unit sphere that contains its boundary. More... | |
class | CompoundRegion |
CompoundRegion is an intermediate base class for spherical regions that are comprised of a point-set operation on other nested regions. More... | |
class | ConvexPolygon |
ConvexPolygon is a closed convex polygon on the unit sphere. More... | |
class | Ellipse |
Ellipse is an elliptical region on the sphere. More... | |
class | HtmPixelization |
HtmPixelization provides HTM indexing of points and regions. More... | |
class | IntersectionRegion |
IntersectionRegion is a lazy point-set inersection of its operands. More... | |
class | Interval |
Interval represents a closed interval of the real numbers by its upper and lower bounds. More... | |
class | Interval1d |
Interval1d represents closed intervals of ℝ. More... | |
class | LonLat |
LonLat represents a spherical coordinate (longitude/latitude angle) pair. More... | |
class | Matrix3d |
A 3x3 matrix with real entries stored in double precision. More... | |
class | Mq3cPixelization |
Mq3cPixelization provides modified Q3C indexing of points and regions. More... | |
class | NormalizedAngle |
NormalizedAngle is an angle that lies in the range [0, 2π), with one exception - a NormalizedAngle can be NaN. More... | |
class | NormalizedAngleInterval |
NormalizedAngleInterval represents closed intervals of normalized angles, i.e. More... | |
class | Pixelization |
A Pixelization (or partitioning) of the sphere is a mapping between points on the sphere and a set of pixels (a.k.a. More... | |
class | Q3cPixelization |
Q3cPixelization provides Q3C indexing of points and regions. More... | |
class | RangeSet |
A RangeSet is a set of unsigned 64 bit integers. More... | |
class | Region |
Region is a minimal interface for 2-dimensional regions on the unit sphere. More... | |
struct | SubChunks |
SubChunks represents a set of sub-chunks of a particular chunk. More... | |
class | UnionRegion |
UnionRegion is a lazy point-set union of its operands. More... | |
class | UnitVector3d |
UnitVector3d is a unit vector in ℝ³ with components stored in double precision. More... | |
class | Vector3d |
Vector3d is a vector in ℝ³ with components stored in double precision. More... | |
Typedefs | |
using | Relationship = std::bitset<3> |
Relationship describes how two sets are related. | |
Functions | |
Angle | operator* (double a, Angle const &b) |
std::ostream & | operator<< (std::ostream &, Angle const &) |
double | sin (Angle const &a) |
double | cos (Angle const &a) |
double | tan (Angle const &a) |
Angle | abs (Angle const &a) |
std::ostream & | operator<< (std::ostream &, AngleInterval const &) |
std::ostream & | operator<< (std::ostream &, Box const &) |
std::ostream & | operator<< (std::ostream &, Box3d const &) |
std::ostream & | operator<< (std::ostream &, Circle const &) |
void | encodeDouble (double item, std::vector< uint8_t > &buffer) |
encodeDouble appends an IEEE double in little-endian byte order to the end of buffer. | |
double | decodeDouble (uint8_t const *buffer) |
decodeDouble extracts an IEEE double from the 8 byte little-endian byte sequence in buffer. | |
void | encodeU64 (std::uint64_t item, std::vector< uint8_t > &buffer) |
encodeU64 appends an uint64 in little-endian byte order to the end of buffer. | |
std::uint64_t | decodeU64 (uint8_t const *buffer) |
decodeU64 extracts an uint64 from the 8 byte little-endian byte sequence in buffer. | |
std::ostream & | operator<< (std::ostream &, ConvexPolygon const &) |
uint64_t | mortonIndex (uint32_t x, uint32_t y) |
mortonIndex interleaves the bits of x and y. | |
std::tuple< uint32_t, uint32_t > | mortonIndexInverse (uint64_t z) |
mortonIndexInverse separates the even and odd bits of z. | |
uint64_t | mortonToHilbert (uint64_t z, int m) |
mortonToHilbert converts the 2m-bit Morton index z to the corresponding Hilbert index. | |
uint64_t | hilbertToMorton (uint64_t h, int m) |
hilbertToMorton converts the 2m-bit Hilbert index h to the corresponding Morton index. | |
uint64_t | hilbertIndex (uint32_t x, uint32_t y, int m) |
hilbertIndex returns the index of (x, y) in a 2-D Hilbert curve. | |
std::tuple< uint32_t, uint32_t > | hilbertIndexInverse (uint64_t h, int m) |
hilbertIndexInverse returns the point (x, y) with Hilbert index h, where x and y are m bit integers. | |
std::ostream & | operator<< (std::ostream &, Ellipse const &) |
std::ostream & | operator<< (std::ostream &, Interval1d const &) |
std::ostream & | operator<< (std::ostream &, LonLat const &) |
std::ostream & | operator<< (std::ostream &, Matrix3d const &) |
NormalizedAngle const & | abs (NormalizedAngle const &a) |
std::ostream & | operator<< (std::ostream &, NormalizedAngleInterval const &) |
int | orientationExact (Vector3d const &a, Vector3d const &b, Vector3d const &c) |
orientationExact computes and returns the orientations of 3 vectors a, b and c, which need not be normalized but are assumed to have finite components. | |
int | orientation (UnitVector3d const &a, UnitVector3d const &b, UnitVector3d const &c) |
orientation computes and returns the orientations of 3 unit vectors a, b and c. | |
int | orientationX (UnitVector3d const &b, UnitVector3d const &c) |
orientationX(b, c) is equivalent to orientation(UnitVector3d::X(), b, c) . | |
int | orientationY (UnitVector3d const &b, UnitVector3d const &c) |
orientationY(b, c) is equivalent to orientation(UnitVector3d::Y(), b, c) . | |
int | orientationZ (UnitVector3d const &b, UnitVector3d const &c) |
orientationZ(b, c) is equivalent to orientation(UnitVector3d::Z(), b, c) . | |
template<typename Pybind11Class > | |
void | defineClass (Pybind11Class &cls) |
void | swap (RangeSet &a, RangeSet &b) |
std::ostream & | operator<< (std::ostream &, RangeSet const &) |
Relationship | invert (Relationship r) |
Given the relationship between two sets A and B (i.e. | |
std::ostream & | operator<< (std::ostream &, UnitVector3d const &) |
double | getMinSquaredChordLength (Vector3d const &v, Vector3d const &a, Vector3d const &b, Vector3d const &n) |
Let p be the unit vector closest to v that lies on the plane with normal n in the direction of the cross product of a and b. | |
double | getMaxSquaredChordLength (Vector3d const &v, Vector3d const &a, Vector3d const &b, Vector3d const &n) |
Let p be the unit vector furthest from v that lies on the plane with normal n in the direction of the cross product of a and b. | |
Angle | getMinAngleToCircle (Angle x, Angle c) |
getMinAngleToCircle returns the minimum angular separation between a point at latitude x and the points on the circle of constant latitude c. | |
Angle | getMaxAngleToCircle (Angle x, Angle c) |
getMaxAngleToCircle returns the maximum angular separation between a point at latitude x and the points on the circle of constant latitude c. | |
Vector3d | getWeightedCentroid (UnitVector3d const &v0, UnitVector3d const &v1, UnitVector3d const &v2) |
getWeightedCentroid returns the center of mass of the given spherical triangle (assuming a uniform mass distribution over the triangle surface), weighted by the triangle area. | |
Vector3d | operator* (double s, Vector3d const &v) |
std::ostream & | operator<< (std::ostream &, Vector3d const &) |
template<> | |
void | defineClass (py::class_< Angle > &cls) |
template<> | |
void | defineClass (py::class_< AngleInterval, std::shared_ptr< AngleInterval > > &cls) |
template<> | |
void | defineClass (py::class_< Box, std::unique_ptr< Box >, Region > &cls) |
template<> | |
void | defineClass (py::class_< Box3d, std::shared_ptr< Box3d > > &cls) |
template<> | |
void | defineClass (py::class_< Chunker, std::shared_ptr< Chunker > > &cls) |
template<> | |
void | defineClass (py::class_< Circle, std::unique_ptr< Circle >, Region > &cls) |
template<> | |
void | defineClass (py::class_< CompoundRegion, std::unique_ptr< CompoundRegion >, Region > &cls) |
template<> | |
void | defineClass (py::class_< UnionRegion, std::unique_ptr< UnionRegion >, CompoundRegion > &cls) |
template<> | |
void | defineClass (py::class_< IntersectionRegion, std::unique_ptr< IntersectionRegion >, CompoundRegion > &cls) |
template<> | |
void | defineClass (py::class_< ConvexPolygon, std::unique_ptr< ConvexPolygon >, Region > &cls) |
void | defineCurve (py::module &mod) |
template<> | |
void | defineClass (py::class_< Ellipse, std::unique_ptr< Ellipse >, Region > &cls) |
template<> | |
void | defineClass (py::class_< HtmPixelization, Pixelization > &cls) |
template<> | |
void | defineClass (py::class_< Interval1d, std::shared_ptr< Interval1d > > &cls) |
template<> | |
void | defineClass (py::class_< LonLat, std::shared_ptr< LonLat > > &cls) |
template<> | |
void | defineClass (py::class_< Matrix3d, std::shared_ptr< Matrix3d > > &cls) |
template<> | |
void | defineClass (py::class_< Mq3cPixelization, Pixelization > &cls) |
template<> | |
void | defineClass (py::class_< NormalizedAngle > &cls) |
template<> | |
void | defineClass (py::class_< NormalizedAngleInterval, std::shared_ptr< NormalizedAngleInterval > > &cls) |
void | defineOrientation (py::module &mod) |
template<> | |
void | defineClass (py::class_< Pixelization > &cls) |
template<> | |
void | defineClass (py::class_< Q3cPixelization, Pixelization > &cls) |
template<> | |
void | defineClass (py::class_< RangeSet, std::shared_ptr< RangeSet > > &cls) |
template<> | |
void | defineClass (py::class_< Region, std::unique_ptr< Region > > &cls) |
void | defineRelationship (py::module &mod) |
void | defineUtils (py::module &) |
template<> | |
void | defineClass (py::class_< UnitVector3d, std::shared_ptr< UnitVector3d > > &cls) |
template<> | |
void | defineClass (py::class_< Vector3d, std::shared_ptr< Vector3d > > &cls) |
uint8_t | log2 (uint64_t x) |
uint8_t | log2 (uint32_t x) |
Variables | |
constexpr double | PI = 3.1415926535897932384626433832795 |
constexpr double | ONE_OVER_PI = 0.318309886183790671537767526745 |
constexpr double | RAD_PER_DEG = 0.0174532925199432957692369076849 |
constexpr double | DEG_PER_RAD = 57.2957795130823208767981548141 |
constexpr double | MAX_ASIN_ERROR = 1.5e-8 |
constexpr double | MAX_SQUARED_CHORD_LENGTH_ERROR = 2.5e-15 |
constexpr double | EPSILON = 1.1102230246251565e-16 |
lsst.sphgeom
using lsst::sphgeom::Relationship = std::bitset<3> |
Relationship
describes how two sets are related.
Definition at line 42 of file Relationship.h.
|
inline |
Definition at line 159 of file NormalizedAngle.h.
|
inline |
|
inline |
decodeDouble
extracts an IEEE double from the 8 byte little-endian byte sequence in buffer.
Definition at line 76 of file codec.h.
|
inline |
decodeU64
extracts an uint64 from the 8 byte little-endian byte sequence in buffer.
Definition at line 115 of file codec.h.
void lsst::sphgeom::defineClass | ( | py::class_< Angle > & | cls | ) |
Definition at line 43 of file _angle.cc.
void lsst::sphgeom::defineClass | ( | py::class_< AngleInterval, std::shared_ptr< AngleInterval > > & | cls | ) |
Definition at line 43 of file _angleInterval.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Box, std::unique_ptr< Box >, Region > & | cls | ) |
Definition at line 55 of file _box.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Box3d, std::shared_ptr< Box3d > > & | cls | ) |
Definition at line 45 of file _box3d.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Chunker, std::shared_ptr< Chunker > > & | cls | ) |
Definition at line 50 of file _chunker.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Circle, std::unique_ptr< Circle >, Region > & | cls | ) |
Definition at line 51 of file _circle.cc.
void lsst::sphgeom::defineClass | ( | py::class_< CompoundRegion, std::unique_ptr< CompoundRegion >, Region > & | cls | ) |
Definition at line 53 of file _compoundRegion.cc.
void lsst::sphgeom::defineClass | ( | py::class_< ConvexPolygon, std::unique_ptr< ConvexPolygon >, Region > & | cls | ) |
Definition at line 52 of file _convexPolygon.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Ellipse, std::unique_ptr< Ellipse >, Region > & | cls | ) |
Definition at line 51 of file _ellipse.cc.
void lsst::sphgeom::defineClass | ( | py::class_< HtmPixelization, Pixelization > & | cls | ) |
Definition at line 42 of file _htmPixelization.cc.
void lsst::sphgeom::defineClass | ( | py::class_< IntersectionRegion, std::unique_ptr< IntersectionRegion >, CompoundRegion > & | cls | ) |
Definition at line 71 of file _compoundRegion.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Interval1d, std::shared_ptr< Interval1d > > & | cls | ) |
Definition at line 43 of file _interval1d.cc.
void lsst::sphgeom::defineClass | ( | py::class_< LonLat, std::shared_ptr< LonLat > > & | cls | ) |
Definition at line 43 of file _lonLat.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Matrix3d, std::shared_ptr< Matrix3d > > & | cls | ) |
Definition at line 49 of file _matrix3d.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Mq3cPixelization, Pixelization > & | cls | ) |
Definition at line 42 of file _mq3cPixelization.cc.
void lsst::sphgeom::defineClass | ( | py::class_< NormalizedAngle > & | cls | ) |
Definition at line 44 of file _normalizedAngle.cc.
void lsst::sphgeom::defineClass | ( | py::class_< NormalizedAngleInterval, std::shared_ptr< NormalizedAngleInterval > > & | cls | ) |
Definition at line 43 of file _normalizedAngleInterval.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Pixelization > & | cls | ) |
Definition at line 44 of file _pixelization.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Q3cPixelization, Pixelization > & | cls | ) |
Definition at line 42 of file _q3cPixelization.cc.
void lsst::sphgeom::defineClass | ( | py::class_< RangeSet, std::shared_ptr< RangeSet > > & | cls | ) |
Definition at line 94 of file _rangeSet.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Region, std::unique_ptr< Region > > & | cls | ) |
Definition at line 52 of file _region.cc.
void lsst::sphgeom::defineClass | ( | py::class_< UnionRegion, std::unique_ptr< UnionRegion >, CompoundRegion > & | cls | ) |
Definition at line 63 of file _compoundRegion.cc.
void lsst::sphgeom::defineClass | ( | py::class_< UnitVector3d, std::shared_ptr< UnitVector3d > > & | cls | ) |
Definition at line 46 of file _unitVector3d.cc.
void lsst::sphgeom::defineClass | ( | py::class_< Vector3d, std::shared_ptr< Vector3d > > & | cls | ) |
Definition at line 45 of file _vector3d.cc.
void lsst::sphgeom::defineClass | ( | Pybind11Class & | cls | ) |
void lsst::sphgeom::defineCurve | ( | py::module & | mod | ) |
Definition at line 39 of file _curve.cc.
void lsst::sphgeom::defineOrientation | ( | py::module & | mod | ) |
Definition at line 39 of file _orientation.cc.
void lsst::sphgeom::defineRelationship | ( | py::module & | mod | ) |
Definition at line 39 of file _relationship.cc.
void lsst::sphgeom::defineUtils | ( | py::module & | mod | ) |
Definition at line 44 of file _utils.cc.
|
inline |
|
inline |
getMaxAngleToCircle
returns the maximum angular separation between a point at latitude x and the points on the circle of constant latitude c.
Definition at line 75 of file utils.h.
double lsst::sphgeom::getMaxSquaredChordLength | ( | Vector3d const & | v, |
Vector3d const & | a, | ||
Vector3d const & | b, | ||
Vector3d const & | n ) |
Let p be the unit vector furthest from v that lies on the plane with normal n in the direction of the cross product of a and b.
If p is in the interior of the great circle segment from a to b, then this helper function returns the squared chord length between p and v. Otherwise it returns 0 - the minimum squared chord length between any pair of points on the sphere.
Definition at line 65 of file utils.cc.
double lsst::sphgeom::getMinSquaredChordLength | ( | Vector3d const & | v, |
Vector3d const & | a, | ||
Vector3d const & | b, | ||
Vector3d const & | n ) |
Let p be the unit vector closest to v that lies on the plane with normal n in the direction of the cross product of a and b.
If p is in the interior of the great circle segment from a to b, then this function returns the squared chord length between p and v. Otherwise it returns 4 - the maximum squared chord length between any pair of points on the unit sphere.
Definition at line 43 of file utils.cc.
Vector3d lsst::sphgeom::getWeightedCentroid | ( | UnitVector3d const & | v0, |
UnitVector3d const & | v1, | ||
UnitVector3d const & | v2 ) |
getWeightedCentroid
returns the center of mass of the given spherical triangle (assuming a uniform mass distribution over the triangle surface), weighted by the triangle area.
Definition at line 86 of file utils.cc.
|
inline |
hilbertIndex
returns the index of (x, y) in a 2-D Hilbert curve.
Only the m least significant bits of x and y are used. Computing the Hilbert index of a point has been measured to take 4 to 15 times as long as computing its Morton index on an Intel Core i7-3820QM CPU. With Xcode 7.3 and -O3, latency is ~19ns per call at a CPU frequency of 3.5 GHz.
Definition at line 356 of file curve.h.
|
inline |
hilbertIndexInverse
returns the point (x, y) with Hilbert index h, where x and y are m bit integers.
Definition at line 368 of file curve.h.
|
inline |
hilbertToMorton
converts the 2m-bit Hilbert index h to the corresponding Morton index.
Definition at line 297 of file curve.h.
|
inline |
Given the relationship between two sets A and B (i.e.
the output of A.relate(B)
), invert
returns the relationship between B and A (B.relate(A)
).
Definition at line 62 of file Relationship.h.
|
inline |
log2
returns the index of the most significant 1 bit in x. If x is 0, the return value is 0.
A beautiful algorithm to find this index is presented in:
Using de Bruijn Sequences to Index a 1 in a Computer Word C. E. Leiserson, H. Prokop, and K. H. Randall. http://supertech.csail.mit.edu/papers/debruijn.pdf
Definition at line 132 of file curve.h.
|
inline |
log2
returns the index of the most significant 1 bit in x. If x is 0, the return value is 0.
A beautiful algorithm to find this index is presented in:
Using de Bruijn Sequences to Index a 1 in a Computer Word C. E. Leiserson, H. Prokop, and K. H. Randall. http://supertech.csail.mit.edu/papers/debruijn.pdf
Definition at line 105 of file curve.h.
|
inline |
mortonIndex
interleaves the bits of x and y.
The 32 even bits of the return value will be the bits of x, and the 32 odd bits those of y. This is the z-value of (x,y) defined by the Morton order function. See https://en.wikipedia.org/wiki/Z-order_curve for more information.
Definition at line 155 of file curve.h.
|
inline |
mortonIndexInverse
separates the even and odd bits of z.
The 32 even bits of z are returned in the first element of the result tuple, and the 32 odd bits in the second. This is the inverse of mortonIndex().
Definition at line 202 of file curve.h.
|
inline |
mortonToHilbert
converts the 2m-bit Morton index z to the corresponding Hilbert index.
Definition at line 243 of file curve.h.
Definition at line 172 of file Vector3d.h.
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
Angle const & | a ) |
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
AngleInterval const & | i ) |
Definition at line 41 of file AngleInterval.cc.
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
Box const & | b ) |
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
Box3d const & | b ) |
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
Circle const & | c ) |
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
ConvexPolygon const & | p ) |
Definition at line 389 of file ConvexPolygon.cc.
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
Ellipse const & | e ) |
Definition at line 395 of file Ellipse.cc.
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
Interval1d const & | i ) |
Definition at line 42 of file Interval1d.cc.
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
LonLat const & | p ) |
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
Matrix3d const & | m ) |
Definition at line 42 of file Matrix3d.cc.
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
NormalizedAngleInterval const & | i ) |
Definition at line 291 of file NormalizedAngleInterval.cc.
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
RangeSet const & | s ) |
Definition at line 623 of file RangeSet.cc.
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
UnitVector3d const & | v ) |
Definition at line 80 of file UnitVector3d.cc.
std::ostream & lsst::sphgeom::operator<< | ( | std::ostream & | os, |
Vector3d const & | v ) |
Definition at line 140 of file Vector3d.cc.
int lsst::sphgeom::orientation | ( | UnitVector3d const & | a, |
UnitVector3d const & | b, | ||
UnitVector3d const & | c ) |
orientation
computes and returns the orientations of 3 unit vectors a, b and c.
The return value is +1 if the vectors are in counter-clockwise orientation, 0 if they are coplanar, colinear or identical, and -1 if they are in clockwise orientation.
This is equivalent to computing the sign of the scalar triple product a · (b x c), which is the sign of the determinant of the 3x3 matrix with a, b and c as columns/rows.
The implementation proceeds by first computing a double precision approximation, and then falling back to arbitrary precision arithmetic when necessary. Consequently, the result is exact.
Definition at line 142 of file orientation.cc.
orientationExact
computes and returns the orientations of 3 vectors a, b and c, which need not be normalized but are assumed to have finite components.
The return value is +1 if the vectors a, b, and c are in counter-clockwise orientation, 0 if they are coplanar, colinear, or identical, and -1 if they are in clockwise orientation. The implementation uses arbitrary precision arithmetic to avoid floating point rounding error, underflow and overflow.
Definition at line 83 of file orientation.cc.
int lsst::sphgeom::orientationX | ( | UnitVector3d const & | b, |
UnitVector3d const & | c ) |
orientationX(b, c)
is equivalent to orientation(UnitVector3d::X(), b, c)
.
Definition at line 234 of file orientation.cc.
int lsst::sphgeom::orientationY | ( | UnitVector3d const & | b, |
UnitVector3d const & | c ) |
orientationY(b, c)
is equivalent to orientation(UnitVector3d::Y(), b, c)
.
Definition at line 239 of file orientation.cc.
int lsst::sphgeom::orientationZ | ( | UnitVector3d const & | b, |
UnitVector3d const & | c ) |
orientationZ(b, c)
is equivalent to orientation(UnitVector3d::Z(), b, c)
.
Definition at line 244 of file orientation.cc.
|
inline |
Definition at line 615 of file RangeSet.h.
|
inline |
|
constexpr |
Definition at line 46 of file constants.h.
|
constexpr |
Definition at line 61 of file constants.h.
|
constexpr |
Definition at line 52 of file constants.h.
|
constexpr |
Definition at line 57 of file constants.h.
|
constexpr |
Definition at line 44 of file constants.h.
|
constexpr |
Definition at line 43 of file constants.h.
|
constexpr |
Definition at line 45 of file constants.h.