diff --git a/glm/gtx/quaternion.inl b/glm/gtx/quaternion.inl index 2d1a6c13..615989bc 100644 --- a/glm/gtx/quaternion.inl +++ b/glm/gtx/quaternion.inl @@ -8,6 +8,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////// #include +#include "../gtc/constants.hpp" namespace glm { @@ -62,7 +63,10 @@ namespace glm ) { detail::tvec3 u(q.x, q.y, q.z); - float Angle = glm::length(u); + T Angle = glm::length(u); + if (Angle < epsilon()) + return detail::tquat(); + detail::tvec3 v(u / Angle); return detail::tquat(cos(Angle), sin(Angle) * v); } @@ -73,18 +77,20 @@ namespace glm detail::tquat const & q ) { - if((q.x == static_cast(0)) && (q.y == static_cast(0)) && (q.z == static_cast(0))) + detail::tvec3 u(q.x, q.y, q.z); + T Vec3Len = length(u); + + if (Vec3Len < epsilon()) { - if(q.w > T(0)) - return detail::tquat(log(q.w), T(0), T(0), T(0)); - else if(q.w < T(0)) - return detail::tquat(log(-q.w), T(3.1415926535897932384626433832795), T(0),T(0)); + if(q.w > static_cast(0)) + return detail::tquat(log(q.w), static_cast(0), static_cast(0), static_cast(0)); + else if(q.w < static_cast(0)) + return detail::tquat(log(-q.w), pi(), static_cast(0), static_cast(0)); else return detail::tquat(std::numeric_limits::infinity(), std::numeric_limits::infinity(), std::numeric_limits::infinity(), std::numeric_limits::infinity()); } else { - T Vec3Len = sqrt(q.x * q.x + q.y * q.y + q.z * q.z); T QuatLen = sqrt(Vec3Len * Vec3Len + q.w * q.w); T t = atan(Vec3Len, T(q.w)) / Vec3Len; return detail::tquat(log(QuatLen), t * q.x, t * q.y, t * q.z); @@ -98,11 +104,11 @@ namespace glm T const & y ) { - if(abs(x.w) > T(0.9999)) + if(abs(x.w) > (static_cast(1) - epsilon())) return x; - float Angle = acos(y); - float NewAngle = Angle * y; - float Div = sin(NewAngle) / sin(Angle); + T Angle = acos(y); + T NewAngle = Angle * y; + T Div = sin(NewAngle) / sin(Angle); return detail::tquat( cos(NewAngle), x.x * Div, diff --git a/readme.txt b/readme.txt index 29e3669b..9c3d238c 100644 --- a/readme.txt +++ b/readme.txt @@ -37,7 +37,7 @@ More informations in GLM manual: http://glm.g-truc.net/glm.pdf ================================================================================ -GLM 0.9.5.4: 2014-0X-XX +GLM 0.9.5.4: 2014-06-21 -------------------------------------------------------------------------------- - Fixed non-utf8 character #196 - Added FindGLM install for CMake #189 @@ -56,6 +56,7 @@ GLM 0.9.5.4: 2014-0X-XX - Fixed std::copy and std::vector with GLM types #214 - Fixed strict aliasing issues #212, #152 - Fixed std::nextafter not supported with C++11 on Android #213 +- Fixed corner cases in exp and log functions for quaternions #199 ================================================================================ GLM 0.9.5.3: 2014-04-02