Public Member Functions |
template<typename NewScalarType > |
internal::cast_return_type
< Translation, Translation
< NewScalarType, Dim > >::type | cast () const |
Translation | inverse () const |
bool | isApprox (const Translation &other, typename NumTraits< Scalar >::Real prec=NumTraits< Scalar >::dummy_precision()) const |
Translation | operator* (const Translation &other) const |
AffineTransformType | operator* (const UniformScaling< Scalar > &other) const |
template<typename OtherDerived > |
AffineTransformType | operator* (const EigenBase< OtherDerived > &linear) const |
template<typename Derived > |
AffineTransformType | operator* (const RotationBase< Derived, Dim > &r) const |
template<int Mode, int Options> |
Transform< Scalar, Dim, Mode > | operator* (const Transform< Scalar, Dim, Mode, Options > &t) const |
VectorType | operator* (const VectorType &other) const |
| Translation () |
| Translation (const Scalar &sx, const Scalar &sy) |
| Translation (const Scalar &sx, const Scalar &sy, const Scalar &sz) |
| Translation (const VectorType &vector) |
template<typename OtherScalarType > |
| Translation (const Translation< OtherScalarType, Dim > &other) |
Scalar | x () const |
| Retruns the x-translation by value.
|
Scalar & | x () |
| Retruns the x-translation as a reference.
|
Scalar | y () const |
| Retruns the y-translation by value.
|
Scalar & | y () |
| Retruns the y-translation as a reference.
|
Scalar | z () const |
| Retruns the z-translation by value.
|
Scalar & | z () |
| Retruns the z-translation as a reference.
|
template<typename _Scalar, int _Dim>
class Eigen::Translation< _Scalar, _Dim >
Represents a translation transformation.
This is defined in the Geometry module.
#include <Eigen/Geometry>
- 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