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
|
A coordinate class intended to represent absolute positions. More...
#include <PSF.h>
Public Types | |
typedef Super::EigenVector | EigenVector |
![]() | |
typedef T | Element |
typedef Eigen::Matrix< T, N, 1, Eigen::DontAlign > | EigenVector |
Public Member Functions | |
Point (T val=static_cast< T >(0)) | |
Construct a Point with all elements set to the same scalar value. More... | |
template<typename U > | |
Point (Point< U, N > const &other) | |
Explicit converting constructor. More... | |
Point (EigenVector const &vector) | |
Construct a Point from an Eigen vector. More... | |
Point (Extent< T, N > const &other) | |
Explicit constructor from Extent. More... | |
void | swap (Point &other) |
![]() | |
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 |
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 |
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) |
![]() | |
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... | |
Private Types | |
typedef PointBase< T, N > | Super |
Additional Inherited Members | |
![]() | |
static int const | dimensions |
![]() | |
PointBase (T val=static_cast< T >(0)) | |
template<typename Vector > | |
PointBase (Eigen::MatrixBase< Vector > const &vector) | |
![]() | |
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) |
![]() | |
EigenVector | _vector |
A coordinate class intended to represent absolute positions.
See Operators on Point and Extent for mathematical operators on Point.
typedef Super::EigenVector lsst.afw.geom::Point< T, N >::EigenVector |
|
private |
|
inlineexplicit |
|
explicit |
Explicit converting constructor.
Converting from floating point to integer rounds to the nearest integer instead of truncating. This ensures that a floating-point pixel coordinate converts to the coordinate of the pixel it lies on (assuming the floating point origin is the center of the first pixel).
|
inlineexplicit |
|
inlineexplicit |
|
inline |
Definition at line 174 of file Point.h.