Browse Source

Make CI happy

EZForever 5 years ago
parent
commit
f109b9185f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/ext/quaternion_trigonometric.inl

+ 1 - 1
glm/ext/quaternion_trigonometric.inl

@@ -9,7 +9,7 @@ namespace glm
 		{
 			T const a = asin(sqrt(x.x * x.x + x.y * x.y + x.z * x.z)) * static_cast<T>(2);
 			if(x.w < static_cast<T>(0))
-				return two_pi<T>() - a;
+				return pi<T>() * static_cast<T>(2) - a;
 			return a;
 		}