LSST Applications g044012fb7c+6976b5ec80,g04a91732dc+88a5fc122b,g07dc498a13+7e3c5f68a2,g114c6a66ad+09472d7a76,g1409bbee79+7e3c5f68a2,g1a7e361dbc+7e3c5f68a2,g1fd858c14a+3a43eabc0e,g35bb328faa+fcb1d3bbc8,g3bd4b5ce2c+2647bb081c,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g5477a8d5ce+b19c77c7ae,g58d0cdf3ff+4a2e102ff8,g60b5630c4e+09472d7a76,g623d845a50+09472d7a76,g6f0c2978f1+fcf1c0bcd6,g71fabbc107+09472d7a76,g75b6c65c88+d0b1dc44cc,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8852436030+349c7e81d4,g89139ef638+7e3c5f68a2,g9125e01d80+fcb1d3bbc8,g95236ca021+f7a31438ed,g989de1cb63+7e3c5f68a2,g9f33ca652e+f17d666fbc,gaaedd4e678+7e3c5f68a2,gabe3b4be73+1e0a283bba,gb1101e3267+f870f33517,gb58c049af0+f03b321e39,gc99c83e5f0+76d20ab76d,gcf25f946ba+349c7e81d4,gd0fa69b896+f3a65fa83c,gd6cbbdb0b4+c8606af20c,gde0f65d7ad+5bd27d919f,ge278dab8ac+932305ba37,gfba249425e+fcb1d3bbc8,w.2025.07
LSST Data Management Base Package
|
Specialization of CoordinateBase for 2 dimensions. More...
#include <CoordinateBase.h>
Public Types | |
typedef T | Element |
typedef Eigen::Matrix< T, 2, 1, Eigen::DontAlign > | EigenVector |
typedef T | Element |
typedef Eigen::Matrix< T, N, 1, Eigen::DontAlign > | EigenVector |
Public Member Functions | |
CoordinateBase (CoordinateBase const &other) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) | |
CoordinateBase (CoordinateBase &&other) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) | |
CoordinateBase & | operator= (CoordinateBase const &other) noexcept(IS_ELEMENT_NOTHROW_ASSIGNABLE) |
CoordinateBase & | operator= (CoordinateBase &&other) noexcept(IS_ELEMENT_NOTHROW_ASSIGNABLE) |
~CoordinateBase () noexcept=default | |
T & | operator[] (int n) |
T const & | operator[] (int n) const |
T & | coeffRef (int n) |
T const & | coeffRef (int n) const |
EigenVector const & | asEigen () const noexcept(IS_ELEMENT_NOTHROW_COPYABLE) |
Return a fixed-size Eigen representation of the coordinate object. | |
T const & | getX () const noexcept |
T const & | getY () const noexcept |
T & | getX () noexcept |
T & | getY () noexcept |
void | setX (T x) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) |
void | setY (T y) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) |
std::pair< T, T > | asPair () const noexcept(IS_ELEMENT_NOTHROW_COPYABLE) |
Return a std::pair representation of the coordinate object. | |
std::tuple< T, T > | asTuple () const noexcept(IS_ELEMENT_NOTHROW_COPYABLE) |
Return a std::tuple representation of the coordinate object. | |
CoordinateBase (CoordinateBase const &other) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) | |
CoordinateBase (CoordinateBase &&other) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) | |
CoordinateBase & | operator= (CoordinateBase const &other) noexcept(IS_ELEMENT_NOTHROW_ASSIGNABLE) |
CoordinateBase & | operator= (CoordinateBase &&other) noexcept(IS_ELEMENT_NOTHROW_ASSIGNABLE) |
~CoordinateBase () noexcept=default | |
T & | operator[] (int n) |
T const & | operator[] (int n) const |
T & | coeffRef (int n) |
T const & | coeffRef (int n) const |
EigenVector const & | asEigen () const noexcept(IS_ELEMENT_NOTHROW_COPYABLE) |
Return a fixed-size Eigen representation of the coordinate object. | |
Static Public Attributes | |
static int const | dimensions = 2 |
static bool constexpr | IS_ELEMENT_NOTHROW_COPYABLE = std::is_nothrow_copy_constructible<T>::value |
static bool constexpr | IS_ELEMENT_NOTHROW_ASSIGNABLE = std::is_nothrow_copy_assignable<T>::value |
static int const | dimensions |
static bool constexpr | IS_ELEMENT_NOTHROW_COPYABLE |
static bool constexpr | IS_ELEMENT_NOTHROW_ASSIGNABLE |
Protected Member Functions | |
CoordinateBase (T val=static_cast< T >(0)) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) | |
template<typename Vector> | |
CoordinateBase (Eigen::MatrixBase< Vector > const &vector) | |
void | _swap (CoordinateBase &other) noexcept |
CoordinateBase (T val=static_cast< T >(0)) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) | |
Initialize all elements to a scalar. | |
CoordinateBase (Eigen::MatrixBase< Vector > const &vector) | |
Initialize all elements from an N-d Eigen vector. | |
void | _swap (CoordinateBase &other) noexcept |
Protected Attributes | |
EigenVector | _vector |
EigenVector | _vector |
Related Symbols | |
(Note that these are not member symbols.) | |
bool | allclose (CoordinateBase< Derived, T, N > const &a, CoordinateBase< Derived, T, N > const &b, T rtol=static_cast< T >(1E-5), T atol=static_cast< T >(1E-8)) noexcept(std::is_nothrow_copy_constructible< T >::value &&std::is_nothrow_copy_assignable< T >::value) |
Floating-point comparison with tolerance. | |
bool | allclose (CoordinateBase< Derived, T, N > const &a, CoordinateBase< Derived, T, N > const &b, T rtol=static_cast< T >(1E-5), T atol=static_cast< T >(1E-8)) noexcept(std::is_nothrow_copy_constructible< T >::value &&std::is_nothrow_copy_assignable< T >::value) |
Floating-point comparison with tolerance. | |
Specialization of CoordinateBase for 2 dimensions.
Definition at line 129 of file CoordinateBase.h.
typedef Eigen::Matrix<T, N, 1, Eigen::DontAlign> lsst::geom::CoordinateBase< Derived, T, N >::EigenVector |
Definition at line 59 of file CoordinateBase.h.
typedef Eigen::Matrix<T, 2, 1, Eigen::DontAlign> lsst::geom::CoordinateBase< Derived, T, 2 >::EigenVector |
Definition at line 133 of file CoordinateBase.h.
typedef T lsst::geom::CoordinateBase< Derived, T, N >::Element |
Definition at line 57 of file CoordinateBase.h.
typedef T lsst::geom::CoordinateBase< Derived, T, 2 >::Element |
Definition at line 131 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 138 of file CoordinateBase.h.
|
inlinenoexcept |
|
defaultnoexcept |
|
inlineexplicitprotectednoexcept |
Definition at line 183 of file CoordinateBase.h.
|
inlineexplicitprotected |
Definition at line 187 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 64 of file CoordinateBase.h.
|
inlinenoexcept |
|
inlineexplicitprotectednoexcept |
Initialize all elements to a scalar.
A public constructor with the same signature is expected for subclasses.
Definition at line 97 of file CoordinateBase.h.
|
inlineexplicitprotected |
Initialize all elements from an N-d Eigen vector.
A public constructor with the same signature is expected for subclasses.
Definition at line 106 of file CoordinateBase.h.
|
defaultnoexcept |
|
inlineprotectednoexcept |
Definition at line 108 of file CoordinateBase.h.
|
inlineprotectednoexcept |
Definition at line 188 of file CoordinateBase.h.
|
inlinenoexcept |
Return a fixed-size Eigen representation of the coordinate object.
The fact that this returns by const reference rather than by value should not be considered part of the API; this is merely an optimization enabled by the implementation.
Definition at line 89 of file CoordinateBase.h.
|
inlinenoexcept |
Return a fixed-size Eigen representation of the coordinate object.
The fact that this returns by const reference rather than by value should not be considered part of the API; this is merely an optimization enabled by the implementation.
Definition at line 163 of file CoordinateBase.h.
|
inlinenoexcept |
Return a std::pair representation of the coordinate object.
Definition at line 173 of file CoordinateBase.h.
|
inlinenoexcept |
Return a std::tuple representation of the coordinate object.
Definition at line 178 of file CoordinateBase.h.
|
inline |
Definition at line 80 of file CoordinateBase.h.
|
inline |
Definition at line 154 of file CoordinateBase.h.
|
inline |
Definition at line 81 of file CoordinateBase.h.
|
inline |
Definition at line 155 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 165 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 167 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 166 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 168 of file CoordinateBase.h.
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
Definition at line 68 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 142 of file CoordinateBase.h.
|
inline |
Definition at line 78 of file CoordinateBase.h.
|
inline |
Definition at line 152 of file CoordinateBase.h.
|
inline |
Definition at line 79 of file CoordinateBase.h.
|
inline |
Definition at line 153 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 169 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 170 of file CoordinateBase.h.
|
Floating-point comparison with tolerance.
Interface, naming, and default tolerances matches Numpy.
Definition at line 120 of file CoordinateBase.cc.
|
Floating-point comparison with tolerance.
Interface, naming, and default tolerances matches Numpy.
Definition at line 120 of file CoordinateBase.cc.
|
protected |
Definition at line 109 of file CoordinateBase.h.
|
protected |
Definition at line 189 of file CoordinateBase.h.
|
static |
Definition at line 58 of file CoordinateBase.h.
|
static |
Definition at line 132 of file CoordinateBase.h.
|
staticconstexpr |
Definition at line 61 of file CoordinateBase.h.
|
staticconstexpr |
Definition at line 135 of file CoordinateBase.h.
|
staticconstexpr |
Definition at line 60 of file CoordinateBase.h.
|
staticconstexpr |
Definition at line 134 of file CoordinateBase.h.