Merge pull request #1079 from BramblePie/Change_orientedAngle_function

Change orientedAngle function #1079
This commit is contained in:
Christophe 2021-07-15 09:57:29 +02:00 committed by GitHub
commit 2759ceca04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,14 +20,15 @@ namespace glm
return acos(clamp(dot(x, y), T(-1), T(1)));
}
//! \todo epsilon is hard coded to 0.01
template<typename T, qualifier Q>
GLM_FUNC_QUALIFIER T orientedAngle(vec<2, T, Q> const& x, vec<2, T, Q> const& y)
{
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'orientedAngle' only accept floating-point inputs");
T const Angle(acos(clamp(dot(x, y), T(-1), T(1))));
if(all(epsilonEqual(y, glm::rotate(x, Angle), T(0.0001))))
T const partialCross = x.x * y.y - y.x * x.y;
if (partialCross > T(0))
return Angle;
else
return -Angle;