mul_qq_test.cpp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 <boost/qvm/quat.hpp>
  7. #include "test_qvm_quaternion.hpp"
  8. #include "test_qvm_matrix.hpp"
  9. #include "gold.hpp"
  10. namespace
  11. {
  12. template <class T,class U> struct same_type_tester;
  13. template <class T> struct same_type_tester<T,T> { };
  14. template <class T,class U> void test_same_type( T, U ) { same_type_tester<T,U>(); }
  15. void
  16. test()
  17. {
  18. using namespace boost::qvm;
  19. for( float a=0; a<6.28f; a+=0.2f )
  20. {
  21. test_qvm::quaternion<Q1> const qx=rotx_quat(a);
  22. test_qvm::quaternion<Q1> const qy=roty_quat(a);
  23. test_qvm::quaternion<Q1> const qz=rotz_quat(a);
  24. test_qvm::quaternion<Q1> const q1=qx*qy*qref(qz);
  25. test_qvm::matrix<M1,3,3> const mx=rotx_mat<3>(a);
  26. test_qvm::matrix<M1,3,3> const my=roty_mat<3>(a);
  27. test_qvm::matrix<M1,3,3> const mz=rotz_mat<3>(a);
  28. test_qvm::matrix<M1,3,3> const m=mx*my*mz;
  29. test_qvm::quaternion<Q1> const q2=convert_to< test_qvm::quaternion<Q1> >(m);
  30. test_same_type(qx,qx*qy);
  31. BOOST_QVM_TEST_CLOSE_QUAT(q1.a,q2.a,0.00001f);
  32. }
  33. }
  34. }
  35. int
  36. main()
  37. {
  38. test();
  39. return boost::report_errors();
  40. }