mul_qv_test.cpp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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/operations.hpp>
  5. #include <boost/qvm/vec.hpp>
  6. #include "test_qvm_quaternion.hpp"
  7. #include "test_qvm_matrix.hpp"
  8. #include "test_qvm_vector.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::matrix<M1,3,3> const mx=rotx_mat<3>(a);
  25. test_qvm::matrix<M1,3,3> const my=roty_mat<3>(a);
  26. test_qvm::matrix<M1,3,3> const mz=rotz_mat<3>(a);
  27. test_qvm::vector<V1,3> const v(42,1);
  28. test_same_type(vec<float,3>(),qx*v);
  29. test_qvm::vector<V1,3> const q_vx=qx*v;
  30. test_qvm::vector<V1,3> const m_vx=mx*v;
  31. test_qvm::vector<V1,3> const q_vy=qy*v;
  32. test_qvm::vector<V1,3> const m_vy=my*v;
  33. test_qvm::vector<V1,3> const q_vz=qz*v;
  34. test_qvm::vector<V1,3> const m_vz=mz*v;
  35. BOOST_QVM_TEST_CLOSE(q_vx.a,m_vx.a,0.001f);
  36. BOOST_QVM_TEST_CLOSE(q_vy.a,m_vy.a,0.001f);
  37. BOOST_QVM_TEST_CLOSE(q_vz.a,m_vz.a,0.001f);
  38. }
  39. }
  40. }
  41. int
  42. main()
  43. {
  44. test();
  45. return boost::report_errors();
  46. }