|
LSSTApplications
1.1.2+25,10.0+13,10.0+132,10.0+133,10.0+224,10.0+41,10.0+8,10.0-1-g0f53050+14,10.0-1-g4b7b172+19,10.0-1-g61a5bae+98,10.0-1-g7408a83+3,10.0-1-gc1e0f5a+19,10.0-1-gdb4482e+14,10.0-11-g3947115+2,10.0-12-g8719d8b+2,10.0-15-ga3f480f+1,10.0-2-g4f67435,10.0-2-gcb4bc6c+26,10.0-28-gf7f57a9+1,10.0-3-g1bbe32c+14,10.0-3-g5b46d21,10.0-4-g027f45f+5,10.0-4-g86f66b5+2,10.0-4-gc4fccf3+24,10.0-40-g4349866+2,10.0-5-g766159b,10.0-5-gca2295e+25,10.0-6-g462a451+1
LSSTDataManagementBasePackage
|
#include <Extent.h>
Public Member Functions | |
| T | computeSquaredNorm () const |
| Return the squared L2 norm of the Extent (x^2 + y^2 + ...). More... | |
| T | computeNorm () const |
| Return the L2 norm of the Extent (sqrt(x^2 + y^2 + ...)). More... | |
| bool | operator== (Extent< T, N > const &other) const |
| Standard equality comparison. More... | |
| bool | operator!= (Extent< T, N > const &other) const |
| Standard inequality comparison. More... | |
| Point< T, N > | asPoint () const |
| Cast this object to an Extent of the same numeric type and dimensionality. More... | |
| std::string | toString () const |
Named comparison functions | |
Note that these return CoordinateExpr, not bool. Unlike most arithmetic and assignment operators, scalar interoperability is provided for comparisons; expressions like * if (all(extent.gt(0))) ...
*
are both ubiquitous and easy to interpret. | |
| CoordinateExpr< N > | eq (Extent< T, N > const &other) const |
| CoordinateExpr< N > | ne (Extent< T, N > const &other) const |
| CoordinateExpr< N > | lt (Extent< T, N > const &other) const |
| CoordinateExpr< N > | le (Extent< T, N > const &other) const |
| CoordinateExpr< N > | gt (Extent< T, N > const &other) const |
| CoordinateExpr< N > | ge (Extent< 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 |
Additive arithmetic operators | |
No scalar interoperability is provided for Extent additive arithmetic operations. | |
| Point< T, N > | operator+ (Point< T, N > const &other) const |
| Extent< T, N > | operator+ (Extent< T, N > const &other) const |
| Extent< T, N > | operator- (Extent< T, N > const &other) const |
| Extent< T, N > & | operator+= (Extent< T, N > const &other) |
| Extent< T, N > & | operator-= (Extent< T, N > const &other) |
| Extent< T, N > | operator+ () const |
| Extent< T, N > | operator- () const |
Multiplicative arithmetic operators | |
As usual with matrices and vectors, Extent can be multiplied or divided by a scalar. | |
| Extent< T, N > | operator* (T scalar) const |
| Extent< T, N > & | operator*= (T scalar) |
| Extent< T, N > | operator/ (T scalar) const |
| Extent< T, N > & | operator/= (T scalar) |
Public Member Functions inherited from lsst.afw.geom::CoordinateBase< Extent< T, N >, T, N > | |
| 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... | |
Protected Member Functions | |
| ExtentBase (T val=static_cast< T >(0)) | |
| Construct an Extent<T,N> with all elements set to the same scalar value. More... | |
| template<typename Vector > | |
| ExtentBase (Eigen::MatrixBase< Vector > const &vector) | |
| Construct an Extent from an Eigen vector. More... | |
Protected Member Functions inherited from lsst.afw.geom::CoordinateBase< Extent< T, N >, T, N > | |
| 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) |
Private Types | |
| typedef CoordinateBase< Extent < T, N >, T, N > | Super |
Additional Inherited Members | |
Public Types inherited from lsst.afw.geom::CoordinateBase< Extent< T, N >, T, N > | |
| typedef T | Element |
| typedef Eigen::Matrix< T, N, 1, Eigen::DontAlign > | EigenVector |
Static Public Attributes inherited from lsst.afw.geom::CoordinateBase< Extent< T, N >, T, N > | |
| static int const | dimensions |
Protected Attributes inherited from lsst.afw.geom::CoordinateBase< Extent< T, N >, T, N > | |
| EigenVector | _vector |
|
private |
|
inlineexplicitprotected |
|
inlineexplicitprotected |
| Point<T,N> lsst.afw.geom::ExtentBase< T, N >::asPoint | ( | ) | const |
Cast this object to an Extent of the same numeric type and dimensionality.
|
inline |
Return the L2 norm of the Extent (sqrt(x^2 + y^2 + ...)).
Definition at line 72 of file Extent.h.
|
inline |
Return the squared L2 norm of the Extent (x^2 + y^2 + ...).
Definition at line 69 of file Extent.h.
| CoordinateExpr<N> lsst.afw.geom::ExtentBase< T, N >::eq | ( | Extent< T, N > const & | other | ) | const |
|
inline |
| CoordinateExpr<N> lsst.afw.geom::ExtentBase< T, N >::ge | ( | Extent< T, N > const & | other | ) | const |
|
inline |
| CoordinateExpr<N> lsst.afw.geom::ExtentBase< T, N >::gt | ( | Extent< T, N > const & | other | ) | const |
|
inline |
| CoordinateExpr<N> lsst.afw.geom::ExtentBase< T, N >::le | ( | Extent< T, N > const & | other | ) | const |
|
inline |
| CoordinateExpr<N> lsst.afw.geom::ExtentBase< T, N >::lt | ( | Extent< T, N > const & | other | ) | const |
|
inline |
| CoordinateExpr<N> lsst.afw.geom::ExtentBase< T, N >::ne | ( | Extent< T, N > const & | other | ) | const |
|
inline |
|
inline |
Standard inequality comparison.
Returns true iff any(this->ne(other));
Definition at line 86 of file Extent.h.
|
inline |
Definition at line 146 of file Extent.h.
|
inline |
Definition at line 147 of file Extent.h.
| Point<T,N> lsst.afw.geom::ExtentBase< T, N >::operator+ | ( | Point< T, N > const & | other | ) | const |
|
inline |
Definition at line 122 of file Extent.h.
|
inline |
|
inline |
Definition at line 128 of file Extent.h.
|
inline |
Definition at line 125 of file Extent.h.
|
inline |
Definition at line 137 of file Extent.h.
|
inline |
Definition at line 132 of file Extent.h.
|
inline |
Definition at line 148 of file Extent.h.
|
inline |
Definition at line 149 of file Extent.h.
|
inline |
Standard equality comparison.
Returns true iff all(this->eq(other));
Definition at line 79 of file Extent.h.
|
inline |
1.8.5