LSSTApplications
12.1-5-gbdcc3ab+2,15.0+13,15.0+26,15.0-1-g19261fa+17,15.0-1-g60afb23+26,15.0-1-g615e0bb+18,15.0-1-g788a293+26,15.0-1-ga91101e+26,15.0-1-gae1598d+12,15.0-1-gd076f1f+24,15.0-1-gdf18595+5,15.0-1-gf4f1c34+12,15.0-11-g7db6e543+4,15.0-12-g3681e7a+4,15.0-15-gc15de322,15.0-16-g83b84f4,15.0-2-g100d730+19,15.0-2-g1f9c9cf+4,15.0-2-g8aea5f4+1,15.0-2-gf38729e+21,15.0-29-ga12a2b06e,15.0-3-g11fe1a0+14,15.0-3-g707930d+3,15.0-3-g9103c06+12,15.0-3-gd3cbb57+3,15.0-4-g2d82b59,15.0-4-g535e784+10,15.0-4-g92ca6c3+4,15.0-4-gf906033+2,15.0-5-g23e394c+14,15.0-5-g4be42a9,15.0-6-g69628aa,15.0-6-g86e3f3d+1,15.0-6-gfa9b38f+4,15.0-7-g949993c+3,15.0-8-g67a62d3+1,15.0-8-gcf05001+1,15.0-9-g1e7c341+1,w.2018.21
LSSTDataManagementBasePackage
|
A boolean coordinate. More...
#include <CoordinateExpr.h>
Public Types | |
typedef bool | Element |
typedef Eigen::Matrix< bool, N, 1, Eigen::DontAlign > | EigenVector |
Public Member Functions | |
CoordinateExpr (bool val=false) | |
Construct a CoordinateExpr with all elements set to the same scalar value. More... | |
template<typename Vector > | |
CoordinateExpr (Eigen::MatrixBase< Vector > const &vector) | |
Construct a CoordinateExpr from an Eigen vector. More... | |
CoordinateExpr (CoordinateExpr const &)=default | |
CoordinateExpr (CoordinateExpr &&)=default | |
CoordinateExpr & | operator= (CoordinateExpr const &)=default |
CoordinateExpr & | operator= (CoordinateExpr &&)=default |
~CoordinateExpr ()=default | |
bool & | operator[] (int n) |
bool const & | operator[] (int n) const |
bool & | coeffRef (int n) |
bool const & | coeffRef (int n) const |
EigenVector const & | asEigen () const |
Return a fixed-size Eigen representation of the coordinate object. More... | |
Logical operators | |
These operators do not provide interoperability with scalars. | |
CoordinateExpr | and_ (CoordinateExpr const &rhs) const |
CoordinateExpr | or_ (CoordinateExpr const &rhs) const |
CoordinateExpr | not_ () const |
Static Public Attributes | |
static int const | dimensions |
Protected Member Functions | |
void | _swap (CoordinateBase &other) |
Protected Attributes | |
EigenVector | _vector |
Related Functions | |
(Note that these are not member functions.) | |
bool | allclose (CoordinateBase< CoordinateExpr< N >, bool, N > const &a, CoordinateBase< CoordinateExpr< N >, bool, N > const &b, bool rtol=static_cast< bool >(1E-5), bool atol=static_cast< bool >(1E-8)) |
Floating-point comparison with tolerance. More... | |
A boolean coordinate.
CoordinateExpr is intended to be used as a temporary in coordinate comparisons:
Point2D a(3.5,1.2); Point2D b(-1.5,4.3); std::cout << all(a.lt(b)) << std::endl; // false std::cout << any(a.lt(b)) << std::endl; // true
CoordinateExpr is not a true lazy-evaluation expression template, as that seems unnecessary when the object is typically only two bools large (smaller than the raw pointers necessary to implement a lazy solution). The consequence is that there's no short-circuiting of logical operators, but I don't think that will even remotely matter for most use cases. The any() and all() functions do support short-circuiting.
Definition at line 54 of file CoordinateExpr.h.
|
inherited |
Definition at line 56 of file CoordinateBase.h.
|
inherited |
Definition at line 54 of file CoordinateBase.h.
|
inlineexplicit |
Construct a CoordinateExpr with all elements set to the same scalar value.
Definition at line 59 of file CoordinateExpr.h.
|
inlineexplicit |
Construct a CoordinateExpr from an Eigen vector.
Definition at line 63 of file CoordinateExpr.h.
|
default |
|
default |
|
default |
|
inlineprotectedinherited |
Definition at line 93 of file CoordinateBase.h.
CoordinateExpr< N > lsst::afw::geom::CoordinateExpr< N >::and_ | ( | CoordinateExpr< N > const & | rhs | ) | const |
Definition at line 32 of file CoordinateExpr.cc.
|
inlineinherited |
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 75 of file CoordinateBase.h.
|
inlineinherited |
Definition at line 66 of file CoordinateBase.h.
|
inlineinherited |
Definition at line 67 of file CoordinateBase.h.
CoordinateExpr< N > lsst::afw::geom::CoordinateExpr< N >::not_ | ( | ) | const |
Definition at line 50 of file CoordinateExpr.cc.
|
default |
|
default |
|
inlineinherited |
Definition at line 64 of file CoordinateBase.h.
|
inlineinherited |
Definition at line 65 of file CoordinateBase.h.
CoordinateExpr< N > lsst::afw::geom::CoordinateExpr< N >::or_ | ( | CoordinateExpr< N > const & | rhs | ) | const |
Definition at line 41 of file CoordinateExpr.cc.
|
related |
Floating-point comparison with tolerance.
Interface, naming, and default tolerances matches Numpy.
Definition at line 32 of file CoordinateBase.cc.
|
protectedinherited |
Definition at line 94 of file CoordinateBase.h.
|
staticinherited |
Definition at line 55 of file CoordinateBase.h.