LSSTApplications  8.0.0.0+107,8.0.0.1+13,9.1+18,9.2,master-g084aeec0a4,master-g0aced2eed8+6,master-g15627eb03c,master-g28afc54ef9,master-g3391ba5ea0,master-g3d0fb8ae5f,master-g4432ae2e89+36,master-g5c3c32f3ec+17,master-g60f1e072bb+1,master-g6a3ac32d1b,master-g76a88a4307+1,master-g7bce1f4e06+57,master-g8ff4092549+31,master-g98e65bf68e,master-ga6b77976b1+53,master-gae20e2b580+3,master-gb584cd3397+53,master-gc5448b162b+1,master-gc54cf9771d,master-gc69578ece6+1,master-gcbf758c456+22,master-gcec1da163f+63,master-gcf15f11bcc,master-gd167108223,master-gf44c96c709
LSSTDataManagementBasePackage
Public Member Functions | Protected Member Functions | Private Types | List of all members
lsst::afw::geom::ExtentBase< T, N > Class Template Reference

#include <Extent.h>

Inheritance diagram for lsst::afw::geom::ExtentBase< T, N >:
lsst::afw::geom::CoordinateBase< Extent< T, N >, T, N > lsst::afw::geom::Extent< double, 2 > lsst::afw::geom::Extent< int, 2 > lsst::afw::geom::Extent< T, N >

Public Member Functions

computeSquaredNorm () const
 Return the squared L2 norm of the Extent (x^2 + y^2 + ...). More...
 
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...
 
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
 

Detailed Description

template<typename T, int N>
class lsst::afw::geom::ExtentBase< T, N >

Definition at line 64 of file Extent.h.

Member Typedef Documentation

template<typename T, int N>
typedef CoordinateBase<Extent<T,N>,T,N> lsst::afw::geom::ExtentBase< T, N >::Super
private

Definition at line 65 of file Extent.h.

Constructor & Destructor Documentation

template<typename T, int N>
lsst::afw::geom::ExtentBase< T, N >::ExtentBase ( val = static_cast<T>(0))
inlineexplicitprotected

Construct an Extent<T,N> with all elements set to the same scalar value.

Definition at line 168 of file Extent.h.

168 : Super(val) {}
CoordinateBase< Extent< T, N >, T, N > Super
Definition: Extent.h:65
ImageT val
Definition: CR.cc:154
template<typename T, int N>
template<typename Vector >
lsst::afw::geom::ExtentBase< T, N >::ExtentBase ( Eigen::MatrixBase< Vector > const &  vector)
inlineexplicitprotected

Construct an Extent from an Eigen vector.

Definition at line 172 of file Extent.h.

172 : Super(vector) {}
CoordinateBase< Extent< T, N >, T, N > Super
Definition: Extent.h:65

Member Function Documentation

template<typename T, int N>
T lsst::afw::geom::ExtentBase< T, N >::computeNorm ( ) const
inline

Return the L2 norm of the Extent (sqrt(x^2 + y^2 + ...)).

Definition at line 72 of file Extent.h.

72 { return detail::computeExtentNorm(static_cast<Extent<T,N> const &>(*this)); }
double computeExtentNorm(Extent< double, N > const &s)
Definition: Extent.h:45
template<typename T, int N>
T lsst::afw::geom::ExtentBase< T, N >::computeSquaredNorm ( ) const
inline

Return the squared L2 norm of the Extent (x^2 + y^2 + ...).

Definition at line 69 of file Extent.h.

69 { return this->asEigen().squaredNorm(); }
EigenVector const & asEigen() const
Return a fixed-size Eigen representation of the coordinate object.
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::eq ( Extent< T, N > const &  other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::eq ( scalar) const
inline

Definition at line 107 of file Extent.h.

107 { return this->eq(Extent<T,N>(scalar)); }
CoordinateExpr< N > eq(Extent< T, N > const &other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::ge ( Extent< T, N > const &  other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::ge ( scalar) const
inline

Definition at line 112 of file Extent.h.

112 { return this->ge(Extent<T,N>(scalar)); }
CoordinateExpr< N > ge(Extent< T, N > const &other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::gt ( Extent< T, N > const &  other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::gt ( scalar) const
inline

Definition at line 111 of file Extent.h.

111 { return this->gt(Extent<T,N>(scalar)); }
CoordinateExpr< N > gt(Extent< T, N > const &other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::le ( Extent< T, N > const &  other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::le ( scalar) const
inline

Definition at line 110 of file Extent.h.

110 { return this->le(Extent<T,N>(scalar)); }
CoordinateExpr< N > le(Extent< T, N > const &other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::lt ( Extent< T, N > const &  other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::lt ( scalar) const
inline

Definition at line 109 of file Extent.h.

109 { return this->lt(Extent<T,N>(scalar)); }
CoordinateExpr< N > lt(Extent< T, N > const &other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::ne ( Extent< T, N > const &  other) const
template<typename T, int N>
CoordinateExpr<N> lsst::afw::geom::ExtentBase< T, N >::ne ( scalar) const
inline

Definition at line 108 of file Extent.h.

108 { return this->ne(Extent<T,N>(scalar)); }
CoordinateExpr< N > ne(Extent< T, N > const &other) const
template<typename T, int N>
bool lsst::afw::geom::ExtentBase< T, N >::operator!= ( Extent< T, N > const &  other) const
inline

Standard inequality comparison.

Returns true iff any(this->ne(other));

Definition at line 86 of file Extent.h.

86 { return any(this->ne(other)); }
bool any(CoordinateExpr< N > const &expr)
Return true if any elements are true.
CoordinateExpr< N > ne(Extent< T, N > const &other) const
template<typename T, int N>
Extent<T,N> lsst::afw::geom::ExtentBase< T, N >::operator* ( scalar) const
inline

Definition at line 146 of file Extent.h.

146 { return Extent<T,N>(this->_vector * scalar); }
template<typename T, int N>
Extent<T,N>& lsst::afw::geom::ExtentBase< T, N >::operator*= ( scalar)
inline

Definition at line 147 of file Extent.h.

147 { this->_vector *= scalar; return static_cast<Extent<T,N>&>(*this); }
template<typename T, int N>
Point<T,N> lsst::afw::geom::ExtentBase< T, N >::operator+ ( Point< T, N > const &  other) const
template<typename T, int N>
Extent<T,N> lsst::afw::geom::ExtentBase< T, N >::operator+ ( Extent< T, N > const &  other) const
inline

Definition at line 122 of file Extent.h.

122  {
123  return Extent<T,N>(this->_vector + other._vector);
124  }
template<typename T, int N>
Extent<T,N> lsst::afw::geom::ExtentBase< T, N >::operator+ ( ) const
inline

Definition at line 136 of file Extent.h.

136 { return static_cast<Extent<T,N> const &>(*this); }
template<typename T, int N>
Extent<T,N>& lsst::afw::geom::ExtentBase< T, N >::operator+= ( Extent< T, N > const &  other)
inline

Definition at line 128 of file Extent.h.

128  {
129  this->_vector += other._vector;
130  return static_cast<Extent<T,N>&>(*this);
131  }
template<typename T, int N>
Extent<T,N> lsst::afw::geom::ExtentBase< T, N >::operator- ( Extent< T, N > const &  other) const
inline

Definition at line 125 of file Extent.h.

125  {
126  return Extent<T,N>(this->_vector - other._vector);
127  }
template<typename T, int N>
Extent<T,N> lsst::afw::geom::ExtentBase< T, N >::operator- ( ) const
inline

Definition at line 137 of file Extent.h.

137 { return Extent<T,N>(-this->_vector); }
template<typename T, int N>
Extent<T,N>& lsst::afw::geom::ExtentBase< T, N >::operator-= ( Extent< T, N > const &  other)
inline

Definition at line 132 of file Extent.h.

132  {
133  this->_vector -= other._vector;
134  return static_cast<Extent<T,N>&>(*this);
135  }
template<typename T, int N>
Extent<T,N> lsst::afw::geom::ExtentBase< T, N >::operator/ ( scalar) const
inline

Definition at line 148 of file Extent.h.

148 { return Extent<T,N>(this->_vector / scalar); }
template<typename T, int N>
Extent<T,N>& lsst::afw::geom::ExtentBase< T, N >::operator/= ( scalar)
inline

Definition at line 149 of file Extent.h.

149 { this->_vector /= scalar; return static_cast<Extent<T,N>&>(*this); }
template<typename T, int N>
bool lsst::afw::geom::ExtentBase< T, N >::operator== ( Extent< T, N > const &  other) const
inline

Standard equality comparison.

Returns true iff all(this->eq(other));

Definition at line 79 of file Extent.h.

79 { return all(this->eq(other)); }
bool all(CoordinateExpr< N > const &expr)
Return true if all elements are true.
CoordinateExpr< N > eq(Extent< T, N > const &other) const
template<typename T, int N>
std::string lsst::afw::geom::ExtentBase< T, N >::toString ( void  ) const
inline

Definition at line 152 of file Extent.h.

152  {
153  std::stringstream out;
154  out << "Extent(";
155  for (size_t i = 0; i < N; ++i) {
156  if (i != 0) {
157  out << ",";
158  }
159  out << (*this)[i];
160  }
161  out << ")";
162  return out.str();
163  }

The documentation for this class was generated from the following file: