scalar_cast_q_test.cpp 744 B

123456789101112131415161718192021222324252627282930
  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 "test_qvm_quaternion.hpp"
  6. #include "gold.hpp"
  7. namespace
  8. {
  9. void
  10. test()
  11. {
  12. using namespace boost::qvm::sfinae;
  13. test_qvm::quaternion<Q1,double> x(42,1);
  14. test_qvm::quaternion<Q1,float> y;
  15. assign(y,scalar_cast<float>(x));
  16. for( int i=0; i!=4; ++i )
  17. y.b[i]=static_cast<float>(x.a[i]);
  18. BOOST_QVM_TEST_EQ(y.a,y.b);
  19. }
  20. }
  21. int
  22. main()
  23. {
  24. test();
  25. return boost::report_errors();
  26. }