|
lsst.geom g19811a7679+8681a15dd0
|
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 |
Definition at line 140 of file CoordinateBase.h.
|
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 |
Definition at line 66 of file CoordinateBase.h.
|
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 |
Definition at line 72 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 146 of file CoordinateBase.h.
|
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.