Base class for quaternion expressions. More...
Public Types | |
enum | { Flags } |
typedef AngleAxis< Scalar > | AngleAxisType |
typedef RotationBase< Derived, 3 > | Base |
typedef internal::traits< Derived >::Coefficients | Coefficients |
typedef Coefficients::CoeffReturnType | CoeffReturnType |
typedef Matrix< Scalar, 3, 3 > | Matrix3 |
typedef std::conditional_t< bool(internal::traits< Derived >::Flags &LvalueBit), Scalar &, CoeffReturnType > | NonConstCoeffReturnType |
typedef NumTraits< Scalar >::Real | RealScalar |
typedef internal::traits< Derived >::Scalar | Scalar |
typedef Matrix< Scalar, 3, 1 > | Vector3 |
![]() | |
enum | |
typedef Matrix< Scalar, Dim, Dim > | RotationMatrixType |
typedef internal::traits< Derived >::Scalar | Scalar |
typedef Matrix< Scalar, Dim, 1 > | VectorType |
Public Member Functions | |
Vector3 | _transformVector (const Vector3 &v) const |
template<class OtherDerived > | |
Scalar | angularDistance (const QuaternionBase< OtherDerived > &other) const |
template<class OtherDerived > | |
internal::traits< Derived >::Scalar | angularDistance (const QuaternionBase< OtherDerived > &other) const |
template<typename NewScalarType > | |
internal::cast_return_type< Derived, Quaternion< NewScalarType > >::type | cast () const |
internal::traits< Derived >::Coefficients & | coeffs () |
const internal::traits< Derived >::Coefficients & | coeffs () const |
Quaternion< Scalar > | conjugate () const |
template<class OtherDerived > | |
Scalar | dot (const QuaternionBase< OtherDerived > &other) const |
Quaternion< Scalar > | inverse () const |
template<class OtherDerived > | |
bool | isApprox (const QuaternionBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
Scalar | norm () const |
void | normalize () |
Quaternion< Scalar > | normalized () const |
template<class OtherDerived > | |
bool | operator!= (const QuaternionBase< OtherDerived > &other) const |
template<class OtherDerived > | |
Quaternion< typename internal::traits< Derived >::Scalar > | operator* (const QuaternionBase< OtherDerived > &other) const |
template<class OtherDerived > | |
Quaternion< Scalar > | operator* (const QuaternionBase< OtherDerived > &q) const |
template<class OtherDerived > | |
Derived & | operator*= (const QuaternionBase< OtherDerived > &q) |
Derived & | operator= (const AngleAxisType &aa) |
template<class MatrixDerived > | |
Derived & | operator= (const MatrixBase< MatrixDerived > &xpr) |
template<class OtherDerived > | |
Derived & | operator= (const MatrixBase< OtherDerived > &m) |
QuaternionBase< Derived > & | operator= (const QuaternionBase< Derived > &other) |
template<class OtherDerived > | |
Derived & | operator= (const QuaternionBase< OtherDerived > &other) |
template<class OtherDerived > | |
bool | operator== (const QuaternionBase< OtherDerived > &other) const |
template<typename Derived1 , typename Derived2 > | |
Derived & | setFromTwoVectors (const MatrixBase< Derived1 > &a, const MatrixBase< Derived2 > &b) |
QuaternionBase & | setIdentity () |
template<class OtherDerived > | |
Quaternion< Scalar > | slerp (const Scalar &t, const QuaternionBase< OtherDerived > &other) const |
template<class OtherDerived > | |
Quaternion< typename internal::traits< Derived >::Scalar > | slerp (const Scalar &t, const QuaternionBase< OtherDerived > &other) const |
Scalar | squaredNorm () const |
Matrix3 | toRotationMatrix () const |
VectorBlock< Coefficients, 3 > | vec () |
const VectorBlock< const Coefficients, 3 > | vec () const |
NonConstCoeffReturnType | w () |
CoeffReturnType | w () const |
NonConstCoeffReturnType | x () |
CoeffReturnType | x () const |
NonConstCoeffReturnType | y () |
CoeffReturnType | y () const |
NonConstCoeffReturnType | z () |
CoeffReturnType | z () const |
![]() | |
VectorType | _transformVector (const OtherVectorType &v) const |
Derived & | derived () |
const Derived & | derived () const |
Derived | inverse () const |
RotationMatrixType | matrix () const |
internal::rotation_base_generic_product_selector< Derived, 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 |
Static Public Member Functions | |
static Quaternion< Scalar > | Identity () |
Base class for quaternion expressions.
This is defined in the Geometry module.
Derived | derived type (CRTP) |
Definition at line 37 of file Quaternion.h.
typedef AngleAxis<Scalar> Eigen::QuaternionBase< Derived >::AngleAxisType |
the equivalent angle-axis type
Definition at line 63 of file Quaternion.h.
typedef RotationBase<Derived, 3> Eigen::QuaternionBase< Derived >::Base |
Definition at line 40 of file Quaternion.h.
typedef internal::traits<Derived>::Coefficients Eigen::QuaternionBase< Derived >::Coefficients |
Definition at line 47 of file Quaternion.h.
typedef Coefficients::CoeffReturnType Eigen::QuaternionBase< Derived >::CoeffReturnType |
Definition at line 48 of file Quaternion.h.
typedef Matrix<Scalar,3,3> Eigen::QuaternionBase< Derived >::Matrix3 |
the equivalent rotation matrix type
Definition at line 61 of file Quaternion.h.
typedef std::conditional_t<bool(internal::traits<Derived>::Flags&LvalueBit), Scalar&, CoeffReturnType> Eigen::QuaternionBase< Derived >::NonConstCoeffReturnType |
Definition at line 50 of file Quaternion.h.
typedef NumTraits<Scalar>::Real Eigen::QuaternionBase< Derived >::RealScalar |
Definition at line 46 of file Quaternion.h.
typedef internal::traits<Derived>::Scalar Eigen::QuaternionBase< Derived >::Scalar |
Definition at line 45 of file Quaternion.h.
typedef Matrix<Scalar,3,1> Eigen::QuaternionBase< Derived >::Vector3 |
the type of a 3D vector
Definition at line 59 of file Quaternion.h.
anonymous enum |
|
inline |
return the result vector of v through the rotation
Rotation of a vector by a quaternion.
Definition at line 537 of file Quaternion.h.
Scalar Eigen::QuaternionBase< Derived >::angularDistance | ( | const QuaternionBase< OtherDerived > & | other | ) | const |
|
inline |
Definition at line 770 of file Quaternion.h.
|
inline |
*this
with scalar type casted to NewScalarType Note that if NewScalarType is equal to the current scalar type of *this
then this function smartly returns a const reference to *this
.
|
inline |
Definition at line 95 of file Quaternion.h.
|
inline |
Definition at line 92 of file Quaternion.h.
|
inline |
*this
which is equal to the multiplicative inverse if the quaternion is normalized. The conjugate of a quaternion represents the opposite rotation.Definition at line 757 of file Quaternion.h.
|
inline |
*this
and other Geometrically speaking, the dot product of two unit quaternions corresponds to the cosine of half the angle between the two rotations. Definition at line 141 of file Quaternion.h.
|
inlinestatic |
Definition at line 113 of file Quaternion.h.
|
inline |
*this
Note that in most cases, i.e., if you simply want the opposite rotation, and/or the quaternion is normalized, then it is enough to use the conjugate.Definition at line 726 of file Quaternion.h.
|
inline |
true
if *this
is approximately equal to other, within the precision determined by prec.Definition at line 184 of file Quaternion.h.
|
inline |
|
inline |
Normalizes the quaternion *this
Definition at line 131 of file Quaternion.h.
|
inline |
*this
Definition at line 134 of file Quaternion.h.
|
inline |
*this
and other are not exactly equal to each other. Definition at line 176 of file Quaternion.h.
|
inline |
Definition at line 511 of file Quaternion.h.
|
inline |
|
inline |
Definition at line 522 of file Quaternion.h.
|
inline |
Set *this
from an angle-axis aa and returns a reference to *this
Definition at line 567 of file Quaternion.h.
|
inline |
Set *this
from the expression xpr:
Definition at line 585 of file Quaternion.h.
Derived& Eigen::QuaternionBase< Derived >::operator= | ( | const MatrixBase< OtherDerived > & | m | ) |
|
inline |
Definition at line 550 of file Quaternion.h.
|
inline |
Definition at line 558 of file Quaternion.h.
|
inline |
*this
and other are all exactly equal. Definition at line 168 of file Quaternion.h.
|
inline |
Sets *this
to be a quaternion representing a rotation between the two arbitrary vectors a and b. In other words, the built rotation represent a rotation sending the line of direction a to the line of direction b, both lines passing through the origin.
*this
.Note that the two input vectors do not have to be normalized, and do not need to have the same norm.
Definition at line 644 of file Quaternion.h.
|
inline |
Definition at line 117 of file Quaternion.h.
Quaternion<Scalar> Eigen::QuaternionBase< Derived >::slerp | ( | const Scalar & | t, |
const QuaternionBase< OtherDerived > & | other | ||
) | const |
Quaternion<typename internal::traits<Derived>::Scalar> Eigen::QuaternionBase< Derived >::slerp | ( | const Scalar & | t, |
const QuaternionBase< OtherDerived > & | other | ||
) | const |
*this
and other at the parameter t in [0;1].This represents an interpolation for a constant motion between *this
and other, see also http://en.wikipedia.org/wiki/Slerp.
Definition at line 788 of file Quaternion.h.
|
inline |
Definition at line 122 of file Quaternion.h.
|
inline |
Convert the quaternion to a 3x3 rotation matrix. The quaternion is required to be normalized, otherwise the result is undefined.
Definition at line 598 of file Quaternion.h.
|
inline |
Definition at line 89 of file Quaternion.h.
|
inline |
Definition at line 86 of file Quaternion.h.
|
inline |
w
coefficient (if Derived is a non-const lvalue) Definition at line 83 of file Quaternion.h.
|
inline |
|
inline |
x
coefficient (if Derived is a non-const lvalue) Definition at line 77 of file Quaternion.h.
|
inline |
|
inline |
y
coefficient (if Derived is a non-const lvalue) Definition at line 79 of file Quaternion.h.
|
inline |
|
inline |
z
coefficient (if Derived is a non-const lvalue) Definition at line 81 of file Quaternion.h.
|
inline |