mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-11 03:09:01 +08:00
Remove std:: prefix
This commit is contained in:
parent
3860a0bc8f
commit
27f3970453
@ -175,7 +175,7 @@ AngleAxis<Scalar>& AngleAxis<Scalar>::operator=(const QuaternionBase<QuatDerived
|
||||
|
||||
if (n != Scalar(0))
|
||||
{
|
||||
m_angle = Scalar(2)*atan2(n, std::abs(q.w()));
|
||||
m_angle = Scalar(2)*atan2(n, abs(q.w()));
|
||||
if(q.w() < 0)
|
||||
n = -n;
|
||||
m_axis = q.vec() / n;
|
||||
|
Loading…
x
Reference in New Issue
Block a user