ext_quaternion_trigonometric.cpp 865 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #include <glm/ext/quaternion_trigonometric.hpp>
  2. #include <glm/ext/quaternion_float.hpp>
  3. #include <glm/ext/vector_relational.hpp>
  4. #include <glm/ext/scalar_relational.hpp>
  5. float const Epsilon = 0.001f;
  6. static int test_angle()
  7. {
  8. int Error = 0;
  9. {
  10. glm::quat const Q = glm::quat(glm::vec3(1, 0, 0), glm::vec3(0, 1, 0));
  11. float const A = glm::degrees(glm::angle(Q));
  12. Error += glm::equal(A, 90.0f, Epsilon) ? 0 : 1;
  13. }
  14. {
  15. glm::quat const Q = glm::quat(glm::vec3(0, 1, 0), glm::vec3(1, 0, 0));
  16. float const A = glm::degrees(glm::angle(Q));
  17. Error += glm::equal(A, 90.0f, Epsilon) ? 0 : 1;
  18. }
  19. {
  20. glm::quat const Q = glm::angleAxis(glm::two_pi<float>() - 1.0f, glm::vec3(1, 0, 0));
  21. float const A = glm::angle(Q);
  22. Error += glm::equal(A, 1.0f, Epsilon) ? 1 : 0;
  23. }
  24. return Error;
  25. }
  26. int main()
  27. {
  28. int Error = 0;
  29. Error += test_angle();
  30. return Error;
  31. }