|
| enum | { Dim = _Dim
} |
| | dimension of the space
|
| |
| enum | { Dim = _Dim
} |
| | dimension of the space
|
| |
|
typedef _Scalar | Scalar |
| | the scalar type of the coefficients
|
| |
|
typedef Matrix< Scalar, Dim, 1 > | VectorType |
| | corresponding vector type
|
| |
|
typedef Matrix< Scalar, Dim, Dim > | LinearMatrixType |
| | corresponding linear transformation matrix type
|
| |
|
typedef Scaling< Scalar, Dim > | ScalingType |
| | corresponding scaling transformation type
|
| |
|
typedef Transform< Scalar, Dim > | TransformType |
| | corresponding affine transformation type
|
| |
|
typedef _Scalar | Scalar |
| | the scalar type of the coefficients
|
| |
|
typedef Matrix< Scalar, Dim, 1 > | VectorType |
| | corresponding vector type
|
| |
|
typedef Matrix< Scalar, Dim, Dim > | LinearMatrixType |
| | corresponding linear transformation matrix type
|
| |
|
typedef Transform< Scalar, Dim, Affine > | AffineTransformType |
| | corresponding affine transformation type
|
| |
|
typedef Transform< Scalar, Dim, Isometry > | IsometryTransformType |
| | corresponding isometric transformation type
|
| |
|
| | Translation () |
| | Default constructor without initialization. More...
|
| |
|
| Translation (const Scalar &sx, const Scalar &sy) |
| |
|
| Translation (const Scalar &sx, const Scalar &sy, const Scalar &sz) |
| |
|
| Translation (const VectorType &vector) |
| | Constructs and initialize the scaling transformation from a vector of scaling coefficients.
|
| |
|
const VectorType & | vector () const |
| |
|
VectorType & | vector () |
| |
|
Translation | operator* (const Translation &other) const |
| | Concatenates two translation.
|
| |
|
TransformType | operator* (const ScalingType &other) const |
| | Concatenates a translation and a scaling.
|
| |
|
TransformType | operator* (const LinearMatrixType &linear) const |
| | Concatenates a translation and a linear transformation.
|
| |
|
template<typename Derived > |
| TransformType | operator* (const RotationBase< Derived, Dim > &r) const |
| |
|
TransformType | operator* (const TransformType &t) const |
| | Concatenates a translation and an affine transformation.
|
| |
|
VectorType | operator* (const VectorType &other) const |
| | Applies translation to vector.
|
| |
| Translation | inverse () const |
| |
|
Translation & | operator= (const Translation &other) |
| |
| template<typename NewScalarType > |
| internal::cast_return_type< Translation, Translation< NewScalarType, Dim > >::type | cast () const |
| |
|
template<typename OtherScalarType > |
| | Translation (const Translation< OtherScalarType, Dim > &other) |
| | Copy constructor with scalar type conversion.
|
| |
| bool | isApprox (const Translation &other, typename NumTraits< Scalar >::Real prec=precision< Scalar >()) const |
| |
| | Translation () |
| | Default constructor without initialization. More...
|
| |
|
| Translation (const Scalar &sx, const Scalar &sy) |
| |
|
| Translation (const Scalar &sx, const Scalar &sy, const Scalar &sz) |
| |
|
| Translation (const VectorType &vector) |
| | Constructs and initialize the translation transformation from a vector of translation coefficients.
|
| |
| Scalar | x () const |
| | Retruns the x-translation by value. More...
|
| |
| Scalar | y () const |
| | Retruns the y-translation by value. More...
|
| |
| Scalar | z () const |
| | Retruns the z-translation by value. More...
|
| |
| Scalar & | x () |
| | Retruns the x-translation as a reference. More...
|
| |
| Scalar & | y () |
| | Retruns the y-translation as a reference. More...
|
| |
| Scalar & | z () |
| | Retruns the z-translation as a reference. More...
|
| |
|
const VectorType & | vector () const |
| |
|
VectorType & | vector () |
| |
|
const VectorType & | translation () const |
| |
|
VectorType & | translation () |
| |
|
Translation | operator* (const Translation &other) const |
| | Concatenates two translation.
|
| |
|
AffineTransformType | operator* (const UniformScaling< Scalar > &other) const |
| | Concatenates a translation and a uniform scaling.
|
| |
|
template<typename OtherDerived > |
| AffineTransformType | operator* (const EigenBase< OtherDerived > &linear) const |
| | Concatenates a translation and a linear transformation.
|
| |
|
template<typename Derived > |
| IsometryTransformType | operator* (const RotationBase< Derived, Dim > &r) const |
| | Concatenates a translation and a rotation.
|
| |
|
template<int Mode, int Options> |
| Transform< Scalar, Dim, Mode > | operator* (const Transform< Scalar, Dim, Mode, Options > &t) const |
| | Concatenates a translation and a transformation.
|
| |
|
VectorType | operator* (const VectorType &other) const |
| | Applies translation to vector.
|
| |
| Translation | inverse () const |
| |
|
Translation & | operator= (const Translation &other) |
| |
| template<typename NewScalarType > |
| internal::cast_return_type< Translation, Translation< NewScalarType, Dim > >::type | cast () const |
| |
|
template<typename OtherScalarType > |
| | Translation (const Translation< OtherScalarType, Dim > &other) |
| | Copy constructor with scalar type conversion.
|
| |
| bool | isApprox (const Translation &other, const typename NumTraits< Scalar >::Real &prec=NumTraits< Scalar >::dummy_precision()) const |
| |
template<typename _Scalar, int _Dim>
class Eigen::Translation< _Scalar, _Dim >
Represents a translation transformation
- Parameters
-
| _Scalar | the scalar type, i.e., the type of the coefficients. |
| _Dim | the dimension of the space, can be a compile time value or Dynamic |
- Note
- This class is not aimed to be used to store a translation transformation, but rather to make easier the constructions and updates of Transform objects.
- See also
- class Scaling, class Transform