LSSTApplications
10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
|
#include <Point.h>
Public Member Functions | |
bool | operator== (Point< T, N > const &other) const |
Standard equality comparison. More... | |
bool | operator!= (Point< T, N > const &other) const |
Standard inequality comparison. More... | |
Extent< T, N > | asExtent () const |
Cast this object to an Extent of the same numeric type and dimensionality. More... | |
void | shift (Extent< T, N > const &offset) |
Shift the point by the given offset. More... | |
void | scale (double factor) |
double | distanceSquared (PointBase< T, N > const &other) const |
std::string | toString () const |
Named vectorized comparison functions | |
Note that these return CoordinateExpr, not bool. Unlike most arithmetic and assignment operators, scalar interoperability is provided for comparisons; expressions like * if (all(point.gt(0))) ...
*
are both ubiquitous and easy to interpret. | |
CoordinateExpr< N > | eq (Point< T, N > const &other) const |
CoordinateExpr< N > | ne (Point< T, N > const &other) const |
CoordinateExpr< N > | lt (Point< T, N > const &other) const |
CoordinateExpr< N > | le (Point< T, N > const &other) const |
CoordinateExpr< N > | gt (Point< T, N > const &other) const |
CoordinateExpr< N > | ge (Point< T, N > const &other) const |
CoordinateExpr< N > | eq (T scalar) const |
CoordinateExpr< N > | ne (T scalar) const |
CoordinateExpr< N > | lt (T scalar) const |
CoordinateExpr< N > | le (T scalar) const |
CoordinateExpr< N > | gt (T scalar) const |
CoordinateExpr< N > | ge (T scalar) const |
Arithmetic operators | |
No scalar interoperability is provided for Point arithmetic operations. | |
Extent< T, N > | operator- (Point< T, N > const &other) const |
Point< T, N > | operator+ (Extent< T, N > const &other) const |
Point< T, N > | operator- (Extent< T, N > const &other) const |
Point< T, N > & | operator+= (Extent< T, N > const &other) |
Point< T, N > & | operator-= (Extent< T, N > const &other) |
Public Member Functions inherited from lsst.afw.geom::CoordinateBase< Point< T, N >, T, N > | |
T & | operator[] (int n) |
T const & | operator[] (int n) const |
T & | coeffRef (int n) |
T const & | coeffRef (int n) const |
EigenVector const & | asEigen () const |
Return a fixed-size Eigen representation of the coordinate object. More... | |
Protected Member Functions | |
PointBase (T val=static_cast< T >(0)) | |
template<typename Vector > | |
PointBase (Eigen::MatrixBase< Vector > const &vector) | |
Protected Member Functions inherited from lsst.afw.geom::CoordinateBase< Point< T, N >, T, N > | |
CoordinateBase (T val=static_cast< T >(0)) | |
Initialize all elements to a scalar. More... | |
CoordinateBase (Eigen::MatrixBase< Vector > const &vector) | |
Initialize all elements from an N-d Eigen vector. More... | |
void | _swap (CoordinateBase &other) |
Private Types | |
typedef CoordinateBase< Point < T, N >, T, N > | Super |
Additional Inherited Members | |
Public Types inherited from lsst.afw.geom::CoordinateBase< Point< T, N >, T, N > | |
typedef T | Element |
typedef Eigen::Matrix< T, N, 1, Eigen::DontAlign > | EigenVector |
Static Public Attributes inherited from lsst.afw.geom::CoordinateBase< Point< T, N >, T, N > | |
static int const | dimensions |
Protected Attributes inherited from lsst.afw.geom::CoordinateBase< Point< T, N >, T, N > | |
EigenVector | _vector |
|
private |
|
inlineexplicitprotected |
|
inlineexplicitprotected |
|
inline |
|
inline |
Definition at line 118 of file Point.h.
CoordinateExpr<N> lsst.afw.geom::PointBase< T, N >::eq | ( | Point< T, N > const & | other | ) | const |
|
inline |
CoordinateExpr<N> lsst.afw.geom::PointBase< T, N >::ge | ( | Point< T, N > const & | other | ) | const |
|
inline |
CoordinateExpr<N> lsst.afw.geom::PointBase< T, N >::gt | ( | Point< T, N > const & | other | ) | const |
|
inline |
CoordinateExpr<N> lsst.afw.geom::PointBase< T, N >::le | ( | Point< T, N > const & | other | ) | const |
|
inline |
CoordinateExpr<N> lsst.afw.geom::PointBase< T, N >::lt | ( | Point< T, N > const & | other | ) | const |
|
inline |
CoordinateExpr<N> lsst.afw.geom::PointBase< T, N >::ne | ( | Point< T, N > const & | other | ) | const |
|
inline |
|
inline |
Standard inequality comparison.
Returns true iff any(this->ne(other));
Definition at line 55 of file Point.h.
|
inline |
Definition at line 93 of file Point.h.
|
inline |
Definition at line 99 of file Point.h.
|
inline |
Definition at line 90 of file Point.h.
|
inline |
Definition at line 96 of file Point.h.
|
inline |
Definition at line 103 of file Point.h.
|
inline |
Standard equality comparison.
Returns true iff all(this->eq(other));
Definition at line 48 of file Point.h.
|
inline |
Definition at line 116 of file Point.h.
|
inline |
Shift the point by the given offset.
Definition at line 113 of file Point.h.
|
inline |