mul_eq_qq_test.cpp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.
  2. //Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #include <boost/qvm/quat_operations.hpp>
  5. #include <boost/qvm/mat_operations.hpp>
  6. #include "test_qvm_quaternion.hpp"
  7. #include "test_qvm_matrix.hpp"
  8. #include "gold.hpp"
  9. namespace
  10. {
  11. template <class T,class U> struct same_type_tester;
  12. template <class T> struct same_type_tester<T,T> { };
  13. template <class T,class U> void test_same_type( T, U ) { same_type_tester<T,U>(); }
  14. void
  15. test()
  16. {
  17. using namespace boost::qvm;
  18. for( float a=0; a<6.28f; a+=0.2f )
  19. {
  20. test_qvm::quaternion<Q1> const qx=rotx_quat(a);
  21. test_qvm::quaternion<Q1> const qy=roty_quat(a);
  22. test_qvm::quaternion<Q1> const qz=rotz_quat(a);
  23. test_qvm::quaternion<Q1> q1=identity_quat<float>();
  24. q1 *= qx;
  25. q1 *= qy;
  26. q1 *= qref(qz);
  27. test_qvm::matrix<M1,3,3> const mx=rotx_mat<3>(a);
  28. test_qvm::matrix<M1,3,3> const my=roty_mat<3>(a);
  29. test_qvm::matrix<M1,3,3> const mz=rotz_mat<3>(a);
  30. test_qvm::matrix<M1,3,3> const m=mx*my*mz;
  31. test_qvm::quaternion<Q1> const q2=convert_to< test_qvm::quaternion<Q1> >(m);
  32. BOOST_QVM_TEST_CLOSE_QUAT(q1.a,q2.a,0.00001f);
  33. }
  34. }
  35. }
  36. int
  37. main()
  38. {
  39. test();
  40. return boost::report_errors();
  41. }