|
lsst.geom
16.0-10-g230e10e+8
|
Specialization of CoordinateBase for 3 dimensions. More...
#include <CoordinateBase.h>
Public Types | |
| typedef T | Element |
| typedef Eigen::Matrix< T, 3, 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. More... | |
| T const & | getX () const noexcept |
| T const & | getY () const noexcept |
| T const & | getZ () const noexcept |
| T & | getX () noexcept |
| T & | getY () noexcept |
| T & | getZ () noexcept |
| void | setX (T x) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) |
| void | setY (T y) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) |
| void | setZ (T z) noexcept(IS_ELEMENT_NOTHROW_COPYABLE) |
| std::tuple< T, T, T > | asTuple () const noexcept(IS_ELEMENT_NOTHROW_COPYABLE) |
| Return a std::tuple representation of the coordinate object. More... | |
Static Public Attributes | |
| static int const | dimensions = 3 |
| 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 |
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 |
Protected Attributes | |
| EigenVector | _vector |
Specialization of CoordinateBase for 3 dimensions.
Definition at line 196 of file CoordinateBase.h.
| typedef Eigen::Matrix<T, 3, 1, Eigen::DontAlign> lsst::geom::CoordinateBase< Derived, T, 3 >::EigenVector |
Definition at line 200 of file CoordinateBase.h.
| typedef T lsst::geom::CoordinateBase< Derived, T, 3 >::Element |
Definition at line 198 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 205 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 207 of file CoordinateBase.h.
|
defaultnoexcept |
|
inlineexplicitprotectednoexcept |
Definition at line 248 of file CoordinateBase.h.
|
inlineexplicitprotected |
Definition at line 252 of file CoordinateBase.h.
|
inlineprotectednoexcept |
Definition at line 253 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 230 of file CoordinateBase.h.
|
inlinenoexcept |
Return a std::tuple representation of the coordinate object.
Definition at line 243 of file CoordinateBase.h.
|
inline |
Definition at line 221 of file CoordinateBase.h.
|
inline |
Definition at line 222 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 232 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 235 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 233 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 236 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 234 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 237 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 209 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 213 of file CoordinateBase.h.
|
inline |
Definition at line 219 of file CoordinateBase.h.
|
inline |
Definition at line 220 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 238 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 239 of file CoordinateBase.h.
|
inlinenoexcept |
Definition at line 240 of file CoordinateBase.h.
|
protected |
Definition at line 254 of file CoordinateBase.h.
|
static |
Definition at line 199 of file CoordinateBase.h.
|
static |
Definition at line 202 of file CoordinateBase.h.
|
static |
Definition at line 201 of file CoordinateBase.h.
1.8.13