|
EIGEN_DEVICE_FUNC | AlignedBox () |
|
EIGEN_DEVICE_FUNC | AlignedBox (Index _dim) |
|
template<typename OtherVectorType1 , typename OtherVectorType2 > |
EIGEN_DEVICE_FUNC | AlignedBox (const OtherVectorType1 &_min, const OtherVectorType2 &_max) |
|
template<typename Derived > |
EIGEN_DEVICE_FUNC | AlignedBox (const MatrixBase< Derived > &p) |
|
template<typename OtherScalarType > |
EIGEN_DEVICE_FUNC | AlignedBox (const AlignedBox< OtherScalarType, AmbientDimAtCompileTime > &other) |
|
template<typename NewScalarType > |
EIGEN_DEVICE_FUNC internal::cast_return_type< AlignedBox, AlignedBox< NewScalarType, AmbientDimAtCompileTime > >::type | cast () const |
|
EIGEN_DEVICE_FUNC AlignedBox & | clamp (const AlignedBox &b) |
|
template<typename Derived > |
EIGEN_DEVICE_FUNC bool | contains (const MatrixBase< Derived > &p) const |
|
EIGEN_DEVICE_FUNC bool | contains (const AlignedBox &b) const |
|
EIGEN_DEVICE_FUNC VectorType | corner (CornerType corner) const |
|
EIGEN_DEVICE_FUNC CwiseBinaryOp< internal::scalar_difference_op< Scalar, Scalar >, const VectorType, const VectorType > | diagonal () const |
|
EIGEN_DEVICE_FUNC Index | dim () const |
|
EIGEN_DEVICE_FUNC const | EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE (VectorTypeSum, RealScalar, quotient) center() const |
|
template<typename Derived > |
EIGEN_DEVICE_FUNC AlignedBox & | extend (const MatrixBase< Derived > &p) |
|
EIGEN_DEVICE_FUNC AlignedBox & | extend (const AlignedBox &b) |
|
template<typename Derived > |
EIGEN_DEVICE_FUNC NonInteger | exteriorDistance (const MatrixBase< Derived > &p) const |
|
EIGEN_DEVICE_FUNC NonInteger | exteriorDistance (const AlignedBox &b) const |
|
EIGEN_DEVICE_FUNC AlignedBox | intersection (const AlignedBox &b) const |
|
EIGEN_DEVICE_FUNC bool | intersects (const AlignedBox &b) const |
|
EIGEN_DEVICE_FUNC bool | isApprox (const AlignedBox &other, const RealScalar &prec=ScalarTraits::dummy_precision()) const |
|
EIGEN_DEVICE_FUNC bool | isEmpty () const |
|
EIGEN_DEVICE_FUNC bool | isNull () const |
|
EIGEN_DEVICE_FUNC const VectorType &() | max () const |
|
EIGEN_DEVICE_FUNC VectorType &() | max () |
|
EIGEN_DEVICE_FUNC AlignedBox | merged (const AlignedBox &b) const |
|
EIGEN_DEVICE_FUNC const VectorType &() | min () const |
|
EIGEN_DEVICE_FUNC VectorType &() | min () |
|
EIGEN_DEVICE_FUNC VectorType | sample () const |
|
EIGEN_DEVICE_FUNC void | setEmpty () |
|
EIGEN_DEVICE_FUNC void | setNull () |
|
EIGEN_DEVICE_FUNC const CwiseBinaryOp< internal::scalar_difference_op< Scalar, Scalar >, const VectorType, const VectorType > | sizes () const |
|
template<typename Derived > |
EIGEN_DEVICE_FUNC Scalar | squaredExteriorDistance (const MatrixBase< Derived > &p) const |
|
EIGEN_DEVICE_FUNC Scalar | squaredExteriorDistance (const AlignedBox &b) const |
|
template<int Mode, int Options> |
EIGEN_DEVICE_FUNC void | transform (const typename Transform< Scalar, AmbientDimAtCompileTime, Mode, Options >::TranslationType &translation) |
|
template<int Mode, int Options> |
EIGEN_DEVICE_FUNC void | transform (const Transform< Scalar, AmbientDimAtCompileTime, Mode, Options > &transform) |
|
template<int Mode, int Options> |
EIGEN_DEVICE_FUNC AlignedBox | transformed (const Transform< Scalar, AmbientDimAtCompileTime, Mode, Options > &transform) const |
|
template<typename Derived > |
EIGEN_DEVICE_FUNC AlignedBox & | translate (const MatrixBase< Derived > &a_t) |
|
template<typename Derived > |
EIGEN_DEVICE_FUNC AlignedBox | translated (const MatrixBase< Derived > &a_t) const |
|
EIGEN_DEVICE_FUNC Scalar | volume () const |
|
EIGEN_DEVICE_FUNC | ~AlignedBox () |
|
template<typename _Scalar, int _AmbientDim>
class Eigen::AlignedBox< _Scalar, _AmbientDim >
An axis aligned box.
- Template Parameters
-
_Scalar | the type of the scalar coefficients |
_AmbientDim | the dimension of the ambient space, can be a compile time value or Dynamic. |
This class represents an axis aligned box as a pair of the minimal and maximal corners.
- Warning
- The result of most methods is undefined when applied to an empty box. You can check for empty boxes using isEmpty().
- See also
- Global aligned box typedefs
Definition at line 292 of file ForwardDeclarations.h.