30#ifndef LSST_SPHGEOM_ORIENTATION_H_
31#define LSST_SPHGEOM_ORIENTATION_H_
This file declares a class for representing unit vectors in ℝ³.
Definition UnitVector3d.h:62
Vector3d is a vector in ℝ³ with components stored in double precision.
Definition Vector3d.h:51
int orientationZ(UnitVector3d const &b, UnitVector3d const &c)
orientationZ(b, c) is equivalent to orientation(UnitVector3d::Z(), b, c).
Definition orientation.cc:244
int orientation(UnitVector3d const &a, UnitVector3d const &b, UnitVector3d const &c)
Definition orientation.cc:142
int orientationX(UnitVector3d const &b, UnitVector3d const &c)
orientationX(b, c) is equivalent to orientation(UnitVector3d::X(), b, c).
Definition orientation.cc:234
int orientationExact(Vector3d const &a, Vector3d const &b, Vector3d const &c)
Definition orientation.cc:83
int orientationY(UnitVector3d const &b, UnitVector3d const &c)
orientationY(b, c) is equivalent to orientation(UnitVector3d::Y(), b, c).
Definition orientation.cc:239