|
Scalar & | angle () |
|
Scalar | angle () const |
|
| AngleAxis () |
|
template<typename OtherScalarType > |
| AngleAxis (const AngleAxis< OtherScalarType > &other) |
|
template<typename Derived > |
| AngleAxis (const MatrixBase< Derived > &m) |
|
template<typename QuatDerived > |
| AngleAxis (const QuaternionBase< QuatDerived > &q) |
|
template<typename Derived > |
| AngleAxis (const Scalar &angle, const MatrixBase< Derived > &axis) |
|
Vector3 & | axis () |
|
const Vector3 & | axis () const |
|
template<typename NewScalarType > |
internal::cast_return_type< AngleAxis, AngleAxis< NewScalarType > >::type | cast () const |
|
template<typename Derived > |
AngleAxis & | fromRotationMatrix (const MatrixBase< Derived > &m) |
|
template<typename Derived > |
AngleAxis< Scalar > & | fromRotationMatrix (const MatrixBase< Derived > &mat) |
| Sets *this from a 3x3 rotation matrix. More...
|
|
AngleAxis | inverse () const |
|
bool | isApprox (const AngleAxis &other, const typename NumTraits< Scalar >::Real &prec=NumTraits< Scalar >::dummy_precision()) const |
|
QuaternionType | operator* (const AngleAxis &other) const |
|
QuaternionType | operator* (const QuaternionType &other) const |
|
template<typename Derived > |
AngleAxis & | operator= (const MatrixBase< Derived > &m) |
|
template<typename Derived > |
AngleAxis< Scalar > & | operator= (const MatrixBase< Derived > &mat) |
|
template<class QuatDerived > |
AngleAxis & | operator= (const QuaternionBase< QuatDerived > &q) |
|
template<typename QuatDerived > |
AngleAxis< Scalar > & | operator= (const QuaternionBase< QuatDerived > &q) |
|
Matrix3 | toRotationMatrix (void) const |
|
VectorType | _transformVector (const OtherVectorType &v) const |
|
AngleAxis< Scalar_ > & | derived () |
|
const AngleAxis< Scalar_ > & | derived () const |
|
AngleAxis< Scalar_ > | inverse () const |
|
RotationMatrixType | matrix () const |
|
internal::rotation_base_generic_product_selector< AngleAxis< Scalar_ >, OtherDerived, OtherDerived::IsVectorAtCompileTime >::ReturnType | operator* (const EigenBase< OtherDerived > &e) const |
|
Transform< Scalar, Dim, Mode > | operator* (const Transform< Scalar, Dim, Mode, Options > &t) const |
|
Transform< Scalar, Dim, Isometry > | operator* (const Translation< Scalar, Dim > &t) const |
|
RotationMatrixType | operator* (const UniformScaling< Scalar > &s) const |
|
RotationMatrixType | toRotationMatrix () const |
|
template<typename Scalar_>
class Eigen::AngleAxis< Scalar_ >
Represents a 3D rotation as a rotation angle around an arbitrary 3D axis.
This is defined in the Geometry module.
- Parameters
-
Scalar_ | the scalar type, i.e., the type of the coefficients. |
- Warning
- When setting up an AngleAxis object, the axis vector must be normalized.
The following two typedefs are provided for convenience:
AngleAxisf
for float
AngleAxisd
for double
Combined with MatrixBase::Unit{X,Y,Z}, AngleAxis can be used to easily mimic Euler-angles. Here is an example:
cout <<
m << endl <<
"is unitary: " <<
m.isUnitary() << endl;
static const BasisReturnType UnitY()
static const BasisReturnType UnitX()
static const BasisReturnType UnitZ()
AngleAxis< float > AngleAxisf
Matrix< float, 3, 3 > Matrix3f
3×3 matrix of type float.
Output:
1.19e-07 0 1
0.969 -0.249 0
0.249 0.969 1.19e-07
is unitary: 1
- Note
- This class is not aimed to be used to store a rotation transformation, but rather to make easier the creation of other rotation (Quaternion, rotation Matrix) and transformation objects.
- See also
- class Quaternion, class Transform, MatrixBase::UnitX()
Definition at line 51 of file AngleAxis.h.
template<typename Scalar_ >
template<typename QuatDerived >
Set *this
from a unit quaternion.
The resulting axis is normalized, and the computed angle is in the [0,pi] range.
This function implicitly normalizes the quaternion q.
Definition at line 172 of file AngleAxis.h.
177 if(
n<NumTraits<Scalar>::epsilon())
178 n = q.vec().stableNorm();
const CwiseBinaryOp< atan2< Scalar >, const Derived, const OtherDerived > atan2(const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const
#define EIGEN_USING_STD(FUNC)
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_abs_op< typename Derived::Scalar >, const Derived > abs(const Eigen::ArrayBase< Derived > &x)