Browse Source

Add test case for glm::angle() sign bug introduced by #946

EZForever 5 years ago
parent
commit
2bb0fb3999
1 changed files with 6 additions and 0 deletions
  1. 6 0
      test/ext/ext_quaternion_trigonometric.cpp

+ 6 - 0
test/ext/ext_quaternion_trigonometric.cpp

@@ -21,6 +21,12 @@ static int test_angle()
 		Error += glm::equal(A, 90.0f, Epsilon) ? 0 : 1;
 	}
 
+	{
+		glm::quat const Q = glm::angleAxis(glm::two_pi<float>() - 1.0f, glm::vec3(1, 0, 0));
+		float const A = glm::angle(Q);
+		Error += glm::equal(A, 1.0f, Epsilon) ? 1 : 0;
+	}
+
 	return Error;
 }