template<typename _Scalar>
class Eigen::UniformScaling< _Scalar >
Represents a generic uniform scaling transformation.
This is defined in the Geometry module.
#include <Eigen/Geometry>
- Template Parameters
-
_Scalar | the scalar type, i.e., the type of the coefficients. |
This class represent a uniform scaling transformation. It is the return type of Scaling(Scalar), and most of the time this is the only way it is used. In particular, this class is not aimed to be used to store a scaling transformation, but rather to make easier the constructions and updates of Transform objects.
To represent an axis aligned scaling, use the DiagonalMatrix class.
- See also
- Scaling(), class DiagonalMatrix, MatrixBase::asDiagonal(), class Translation, class Transform
|
template<typename NewScalarType > |
UniformScaling< NewScalarType > | cast () const |
|
UniformScaling | inverse () const |
|
bool | isApprox (const UniformScaling &other, const typename NumTraits< Scalar >::Real &prec=NumTraits< Scalar >::dummy_precision()) const |
|
UniformScaling | operator* (const UniformScaling &other) const |
|
template<int Dim> |
Transform< Scalar, Dim, Affine > | operator* (const Translation< Scalar, Dim > &t) const |
|
template<int Dim, int Mode, int Options> |
internal::uniformscaling_times_affine_returntype< Scalar, Dim, Mode >::type | operator* (const Transform< Scalar, Dim, Mode, Options > &t) const |
|
template<typename Derived > |
Eigen::internal::plain_matrix_type< Derived >::type | operator* (const MatrixBase< Derived > &other) const |
|
| UniformScaling () |
|
| UniformScaling (const Scalar &s) |
|
template<typename OtherScalarType > |
| UniformScaling (const UniformScaling< OtherScalarType > &other) |
|