mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
Fixed a warning.
Transform::Identity() is now returning a Transform.
This commit is contained in:
parent
8861dce7ee
commit
05837be8fb
@ -573,7 +573,7 @@ QuaternionBase<Derived>::angularDistance(const QuaternionBase<OtherDerived>& oth
|
|||||||
double d = ei_abs(this->dot(other));
|
double d = ei_abs(this->dot(other));
|
||||||
if (d>=1.0)
|
if (d>=1.0)
|
||||||
return Scalar(0);
|
return Scalar(0);
|
||||||
return Scalar(2) * std::acos(d);
|
return static_cast<Scalar>(2 * std::acos(d));
|
||||||
}
|
}
|
||||||
|
|
||||||
/** \returns the spherical linear interpolation between the two quaternions
|
/** \returns the spherical linear interpolation between the two quaternions
|
||||||
|
@ -345,9 +345,14 @@ public:
|
|||||||
|
|
||||||
/** \sa MatrixBase::setIdentity() */
|
/** \sa MatrixBase::setIdentity() */
|
||||||
void setIdentity() { m_matrix.setIdentity(); }
|
void setIdentity() { m_matrix.setIdentity(); }
|
||||||
static const typename MatrixType::IdentityReturnType Identity()
|
|
||||||
|
/**
|
||||||
|
* \brief Returns an identity transformation.
|
||||||
|
* \todo In the future this function should be returning a Transform expression.
|
||||||
|
*/
|
||||||
|
static const Transform Identity()
|
||||||
{
|
{
|
||||||
return MatrixType::Identity();
|
return Transform(MatrixType::Identity());
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename OtherDerived>
|
template<typename OtherDerived>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user