#ifndef BOOST_QVM_QUAT_OPERATIONS #define BOOST_QVM_QUAT_OPERATIONS // Copyright 2008-2022 Emil Dotchevski and Reverge Studios, Inc. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include #include #include #include #include #include #include #include #include namespace boost { namespace qvm { namespace qvm_detail { BOOST_QVM_INLINE_CRITICAL void const * get_valid_ptr_quat_operations() { static int const obj=0; return &obj; } } //////////////////////////////////////////////// namespace msvc_parse_bug_workaround { template struct quats { static bool const value=is_quat::value && is_quat::value; }; } template inline typename enable_if_c< is_quat::value, std::string>::type to_string( A const & a ) { using namespace qvm_to_string_detail; return '('+ to_string(quat_traits::template read_element<0>(a))+','+ to_string(quat_traits::template read_element<1>(a))+','+ to_string(quat_traits::template read_element<2>(a))+','+ to_string(quat_traits::template read_element<3>(a))+')'; } //////////////////////////////////////////////// template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value && is_quat::value, bool>::type cmp( A const & a, B const & b, Cmp f ) { typedef typename quat_traits::scalar_type T; typedef typename quat_traits::scalar_type U; T q1[4] = { quat_traits::template read_element<0>(a), quat_traits::template read_element<1>(a), quat_traits::template read_element<2>(a), quat_traits::template read_element<3>(a) }; U q2[4] = { quat_traits::template read_element<0>(b), quat_traits::template read_element<1>(b), quat_traits::template read_element<2>(b), quat_traits::template read_element<3>(b) }; int i=0; for( ; i!=4; ++i ) if( !f(q1[i],q2[i]) ) break; if( i==4 ) return true; for( i=0; i!=4; ++i ) if( !f(q1[i],-q2[i]) ) return false; return true; } //////////////////////////////////////////////// template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL typename enable_if_c< is_quat::value && is_quat::value, R>::type convert_to( A const & a ) { R r; write_quat_element<0>(r,quat_traits::template read_element<0>(a)); write_quat_element<1>(r,quat_traits::template read_element<1>(a)); write_quat_element<2>(r,quat_traits::template read_element<2>(a)); write_quat_element<3>(r,quat_traits::template read_element<3>(a)); return r; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value && is_mat::value && mat_traits::rows==3 && mat_traits::cols==3, R>::type convert_to( A const & a ) { typedef typename mat_traits::scalar_type T; T const mat[3][3] = { { mat_traits::template read_element<0,0>(a), mat_traits::template read_element<0,1>(a), mat_traits::template read_element<0,2>(a) }, { mat_traits::template read_element<1,0>(a), mat_traits::template read_element<1,1>(a), mat_traits::template read_element<1,2>(a) }, { mat_traits::template read_element<2,0>(a), mat_traits::template read_element<2,1>(a), mat_traits::template read_element<2,2>(a) } }; R r; if( mat[0][0]+mat[1][1]+mat[2][2] > scalar_traits::value(0) ) { T t = mat[0][0] + mat[1][1] + mat[2][2] + scalar_traits::value(1); T s = (scalar_traits::value(1)/sqrt(t))/2; write_quat_element<0>(r,s*t); write_quat_element<1>(r,(mat[2][1]-mat[1][2])*s); write_quat_element<2>(r,(mat[0][2]-mat[2][0])*s); write_quat_element<3>(r,(mat[1][0]-mat[0][1])*s); } else if( mat[0][0]>mat[1][1] && mat[0][0]>mat[2][2] ) { T t = mat[0][0] - mat[1][1] - mat[2][2] + scalar_traits::value(1); T s = (scalar_traits::value(1)/sqrt(t))/2; write_quat_element<0>(r,(mat[2][1]-mat[1][2])*s); write_quat_element<1>(r,s*t); write_quat_element<2>(r,(mat[1][0]+mat[0][1])*s); write_quat_element<3>(r,(mat[0][2]+mat[2][0])*s); } else if( mat[1][1]>mat[2][2] ) { T t = - mat[0][0] + mat[1][1] - mat[2][2] + scalar_traits::value(1); T s = (scalar_traits::value(1)/sqrt(t))/2; write_quat_element<0>(r,(mat[0][2]-mat[2][0])*s); write_quat_element<1>(r,(mat[1][0]+mat[0][1])*s); write_quat_element<2>(r,s*t); write_quat_element<3>(r,(mat[2][1]+mat[1][2])*s); } else { T t = - mat[0][0] - mat[1][1] + mat[2][2] + scalar_traits::value(1); T s = (scalar_traits::value(1)/sqrt(t))/2; write_quat_element<0>(r,(mat[1][0]-mat[0][1])*s); write_quat_element<1>(r,(mat[0][2]+mat[2][0])*s); write_quat_element<2>(r,(mat[2][1]+mat[1][2])*s); write_quat_element<3>(r,s*t); } return r; } //////////////////////////////////////////////// template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value, deduce_quat >::type conjugate( A const & a ) { typedef typename deduce_quat::type R; R r; write_quat_element<0>(r,quat_traits::template read_element<0>(a)); write_quat_element<1>(r,-quat_traits::template read_element<1>(a)); write_quat_element<2>(r,-quat_traits::template read_element<2>(a)); write_quat_element<3>(r,-quat_traits::template read_element<3>(a)); return r; } //////////////////////////////////////////////// namespace qvm_detail { template class identity_quat_ { identity_quat_( identity_quat_ const & ); identity_quat_ & operator=( identity_quat_ const & ); ~identity_quat_(); public: template = 201103L , class = typename enable_if >::type #endif > BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL operator R() const { R r; assign(r,*this); return r; } }; } template struct quat_traits< qvm_detail::identity_quat_ > { typedef qvm_detail::identity_quat_ this_quaternion; typedef T scalar_type; template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element( this_quaternion const & ) { BOOST_QVM_STATIC_ASSERT(I>=0); BOOST_QVM_STATIC_ASSERT(I<4); return scalar_traits::value(I==0); } static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element_idx( int i, this_quaternion const & ) { BOOST_QVM_ASSERT(i>=0); BOOST_QVM_ASSERT(i<4); return scalar_traits::value(i==0); } }; template struct deduce_quat< qvm_detail::identity_quat_ > { typedef quat type; }; template struct deduce_quat2< qvm_detail::identity_quat_, qvm_detail::identity_quat_ > { typedef quat type; }; template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL qvm_detail::identity_quat_ const & identity_quat() { return *(qvm_detail::identity_quat_ const *)qvm_detail::get_valid_ptr_quat_operations(); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, void>::type set_identity( A & a ) { typedef typename quat_traits::scalar_type T; T const zero=scalar_traits::value(0); T const one=scalar_traits::value(1); write_quat_element<0>(a,one); write_quat_element<1>(a,zero); write_quat_element<2>(a,zero); write_quat_element<3>(a,zero); } //////////////////////////////////////////////// namespace qvm_detail { template class quaternion_scalar_cast_ { quaternion_scalar_cast_( quaternion_scalar_cast_ const & ); quaternion_scalar_cast_ & operator=( quaternion_scalar_cast_ const & ); ~quaternion_scalar_cast_(); public: template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL quaternion_scalar_cast_ & operator=( T const & x ) { assign(*this,x); return *this; } template = 201103L , class = typename enable_if >::type #endif > BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL operator R() const { R r; assign(r,*this); return r; } }; template struct scalar_cast_quaternion_filter { }; template <> struct scalar_cast_quaternion_filter { typedef int type; }; } template struct quat_traits< qvm_detail::quaternion_scalar_cast_ > { typedef Scalar scalar_type; typedef qvm_detail::quaternion_scalar_cast_ this_quaternion; template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element( this_quaternion const & x ) { BOOST_QVM_STATIC_ASSERT(I>=0); BOOST_QVM_STATIC_ASSERT(I<4); return scalar_type(quat_traits::template read_element(reinterpret_cast(x))); } static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element_idx( int i, this_quaternion const & x ) { BOOST_QVM_ASSERT(i>=0); BOOST_QVM_ASSERT(i<4); return scalar_type(quat_traits::read_element_idx(i,reinterpret_cast(x))); } }; template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL qvm_detail::quaternion_scalar_cast_ const & scalar_cast( T const & x, typename qvm_detail::scalar_cast_quaternion_filter::value>::type=0 ) { return reinterpret_cast const &>(x); } //////////////////////////////////////////////// template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value && is_scalar::value, A &>::type operator/=( A & a, B b ) { write_quat_element<0>(a,quat_traits::template read_element<0>(a)/b); write_quat_element<1>(a,quat_traits::template read_element<1>(a)/b); write_quat_element<2>(a,quat_traits::template read_element<2>(a)/b); write_quat_element<3>(a,quat_traits::template read_element<3>(a)/b); return a; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value && is_scalar::value, deduce_quat2 >::type operator/( A const & a, B b ) { typedef typename deduce_quat2::type R; R r; write_quat_element<0>(r,quat_traits::template read_element<0>(a)/b); write_quat_element<1>(r,quat_traits::template read_element<1>(a)/b); write_quat_element<2>(r,quat_traits::template read_element<2>(a)/b); write_quat_element<3>(r,quat_traits::template read_element<3>(a)/b); return r; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value && is_quat::value, deduce_scalar::scalar_type,typename quat_traits::scalar_type> >::type dot( A const & a, B const & b ) { typedef typename quat_traits::scalar_type Ta; typedef typename quat_traits::scalar_type Tb; typedef typename deduce_scalar::type Tr; Ta const a0=quat_traits::template read_element<0>(a); Ta const a1=quat_traits::template read_element<1>(a); Ta const a2=quat_traits::template read_element<2>(a); Ta const a3=quat_traits::template read_element<3>(a); Tb const b0=quat_traits::template read_element<0>(b); Tb const b1=quat_traits::template read_element<1>(b); Tb const b2=quat_traits::template read_element<2>(b); Tb const b3=quat_traits::template read_element<3>(b); Tr const dp=a0*b0+a1*b1+a2*b2+a3*b3; return dp; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value && is_quat::value, bool>::type operator==( A const & a, B const & b ) { return quat_traits::template read_element<0>(a)==quat_traits::template read_element<0>(b) && quat_traits::template read_element<1>(a)==quat_traits::template read_element<1>(b) && quat_traits::template read_element<2>(a)==quat_traits::template read_element<2>(b) && quat_traits::template read_element<3>(a)==quat_traits::template read_element<3>(b); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value, deduce_quat >::type inverse( A const & a ) { typedef typename deduce_quat::type R; typedef typename quat_traits::scalar_type TA; TA aa = quat_traits::template read_element<0>(a); TA ab = quat_traits::template read_element<1>(a); TA ac = quat_traits::template read_element<2>(a); TA ad = quat_traits::template read_element<3>(a); TA m2 = ab*ab + ac*ac + ad*ad + aa*aa; if( m2==scalar_traits::value(0) ) BOOST_QVM_THROW_EXCEPTION(zero_magnitude_error()); TA rm=scalar_traits::value(1)/m2; R r; write_quat_element<0>(r,aa*rm); write_quat_element<1>(r,-ab*rm); write_quat_element<2>(r,-ac*rm); write_quat_element<3>(r,-ad*rm); return r; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, typename quat_traits::scalar_type>::type mag_sqr( A const & a ) { typedef typename quat_traits::scalar_type T; T x=quat_traits::template read_element<0>(a); T y=quat_traits::template read_element<1>(a); T z=quat_traits::template read_element<2>(a); T w=quat_traits::template read_element<3>(a); return x*x+y*y+z*z+w*w; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, typename quat_traits::scalar_type>::type mag( A const & a ) { typedef typename quat_traits::scalar_type T; T x=quat_traits::template read_element<0>(a); T y=quat_traits::template read_element<1>(a); T z=quat_traits::template read_element<2>(a); T w=quat_traits::template read_element<3>(a); return sqrt(x*x+y*y+z*z+w*w); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if< msvc_parse_bug_workaround::quats, A &>::type operator-=( A & a, B const & b ) { write_quat_element<0>(a,quat_traits::template read_element<0>(a)-quat_traits::template read_element<0>(b)); write_quat_element<1>(a,quat_traits::template read_element<1>(a)-quat_traits::template read_element<1>(b)); write_quat_element<2>(a,quat_traits::template read_element<2>(a)-quat_traits::template read_element<2>(b)); write_quat_element<3>(a,quat_traits::template read_element<3>(a)-quat_traits::template read_element<3>(b)); return a; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value && is_quat::value, deduce_quat2 >::type operator-( A const & a, B const & b ) { typedef typename deduce_quat2::type R; R r; write_quat_element<0>(r,quat_traits::template read_element<0>(a)-quat_traits::template read_element<0>(b)); write_quat_element<1>(r,quat_traits::template read_element<1>(a)-quat_traits::template read_element<1>(b)); write_quat_element<2>(r,quat_traits::template read_element<2>(a)-quat_traits::template read_element<2>(b)); write_quat_element<3>(r,quat_traits::template read_element<3>(a)-quat_traits::template read_element<3>(b)); return r; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value, deduce_quat >::type operator-( A const & a ) { typedef typename deduce_quat::type R; R r; write_quat_element<0>(r,-quat_traits::template read_element<0>(a)); write_quat_element<1>(r,-quat_traits::template read_element<1>(a)); write_quat_element<2>(r,-quat_traits::template read_element<2>(a)); write_quat_element<3>(r,-quat_traits::template read_element<3>(a)); return r; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if< msvc_parse_bug_workaround::quats, A &>::type operator*=( A & a, B const & b ) { typedef typename quat_traits::scalar_type TA; typedef typename quat_traits::scalar_type TB; TA const aa=quat_traits::template read_element<0>(a); TA const ab=quat_traits::template read_element<1>(a); TA const ac=quat_traits::template read_element<2>(a); TA const ad=quat_traits::template read_element<3>(a); TB const ba=quat_traits::template read_element<0>(b); TB const bb=quat_traits::template read_element<1>(b); TB const bc=quat_traits::template read_element<2>(b); TB const bd=quat_traits::template read_element<3>(b); write_quat_element<0>(a,aa*ba - ab*bb - ac*bc - ad*bd); write_quat_element<1>(a,aa*bb + ab*ba + ac*bd - ad*bc); write_quat_element<2>(a,aa*bc + ac*ba + ad*bb - ab*bd); write_quat_element<3>(a,aa*bd + ad*ba + ab*bc - ac*bb); return a; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value && is_scalar::value, A &>::type operator*=( A & a, B b ) { write_quat_element<0>(a, quat_traits::template read_element<0>(a)*b); write_quat_element<1>(a, quat_traits::template read_element<1>(a)*b); write_quat_element<2>(a, quat_traits::template read_element<2>(a)*b); write_quat_element<3>(a, quat_traits::template read_element<3>(a)*b); return a; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value && is_quat::value, deduce_quat2 >::type operator*( A const & a, B const & b ) { typedef typename deduce_quat2::type R; typedef typename quat_traits::scalar_type TA; typedef typename quat_traits::scalar_type TB; TA const aa=quat_traits::template read_element<0>(a); TA const ab=quat_traits::template read_element<1>(a); TA const ac=quat_traits::template read_element<2>(a); TA const ad=quat_traits::template read_element<3>(a); TB const ba=quat_traits::template read_element<0>(b); TB const bb=quat_traits::template read_element<1>(b); TB const bc=quat_traits::template read_element<2>(b); TB const bd=quat_traits::template read_element<3>(b); R r; write_quat_element<0>(r,aa*ba - ab*bb - ac*bc - ad*bd); write_quat_element<1>(r,aa*bb + ab*ba + ac*bd - ad*bc); write_quat_element<2>(r,aa*bc + ac*ba + ad*bb - ab*bd); write_quat_element<3>(r,aa*bd + ad*ba + ab*bc - ac*bb); return r; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c2< is_quat::value && is_scalar::value, deduce_quat2 >::type operator*( A const & a, B b ) { typedef typename deduce_quat2::type R; R r; write_quat_element<0>(r,quat_traits::template read_element<0>(a)*b); write_quat_element<1>(r,quat_traits::template read_element<1>(a)*b); write_quat_element<2>(r,quat_traits::template read_element<2>(a)*b); write_quat_element<3>(r,quat_traits::template read_element<3>(a)*b); return r; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value && is_quat::value, bool>::type operator!=( A const & a, B const & b ) { return quat_traits::template read_element<0>(a)!=quat_traits::template read_element<0>(b) || quat_traits::template read_element<1>(a)!=quat_traits::template read_element<1>(b) || quat_traits::template read_element<2>(a)!=quat_traits::template read_element<2>(b) || quat_traits::template read_element<3>(a)!=quat_traits::template read_element<3>(b); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value, deduce_quat >::type normalized( A const & a ) { typedef typename quat_traits::scalar_type T; T const a0=quat_traits::template read_element<0>(a); T const a1=quat_traits::template read_element<1>(a); T const a2=quat_traits::template read_element<2>(a); T const a3=quat_traits::template read_element<3>(a); T const m2=a0*a0+a1*a1+a2*a2+a3*a3; if( m2==scalar_traits::scalar_type>::value(0) ) BOOST_QVM_THROW_EXCEPTION(zero_magnitude_error()); T const rm=scalar_traits::value(1)/sqrt(m2); typedef typename deduce_quat::type R; R r; write_quat_element<0>(r,a0*rm); write_quat_element<1>(r,a1*rm); write_quat_element<2>(r,a2*rm); write_quat_element<3>(r,a3*rm); return r; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, void>::type normalize( A & a ) { typedef typename quat_traits::scalar_type T; T const a0=quat_traits::template read_element<0>(a); T const a1=quat_traits::template read_element<1>(a); T const a2=quat_traits::template read_element<2>(a); T const a3=quat_traits::template read_element<3>(a); T const m2=a0*a0+a1*a1+a2*a2+a3*a3; if( m2==scalar_traits::scalar_type>::value(0) ) BOOST_QVM_THROW_EXCEPTION(zero_magnitude_error()); T const rm=scalar_traits::value(1)/sqrt(m2); write_quat_element<0>(a,quat_traits::template read_element<0>(a)*rm); write_quat_element<1>(a,quat_traits::template read_element<1>(a)*rm); write_quat_element<2>(a,quat_traits::template read_element<2>(a)*rm); write_quat_element<3>(a,quat_traits::template read_element<3>(a)*rm); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if< msvc_parse_bug_workaround::quats, A &>::type operator+=( A & a, B const & b ) { write_quat_element<0>(a,quat_traits::template read_element<0>(a)+quat_traits::template read_element<0>(b)); write_quat_element<1>(a,quat_traits::template read_element<1>(a)+quat_traits::template read_element<1>(b)); write_quat_element<2>(a,quat_traits::template read_element<2>(a)+quat_traits::template read_element<2>(b)); write_quat_element<3>(a,quat_traits::template read_element<3>(a)+quat_traits::template read_element<3>(b)); return a; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value && is_quat::value, deduce_quat2 >::type operator+( A const & a, B const & b ) { typedef typename deduce_quat2::type R; R r; write_quat_element<0>(r,quat_traits::template read_element<0>(a)+quat_traits::template read_element<0>(b)); write_quat_element<1>(r,quat_traits::template read_element<1>(a)+quat_traits::template read_element<1>(b)); write_quat_element<2>(r,quat_traits::template read_element<2>(a)+quat_traits::template read_element<2>(b)); write_quat_element<3>(r,quat_traits::template read_element<3>(a)+quat_traits::template read_element<3>(b)); return r; } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value && is_quat::value && is_scalar::value, deduce_quat2 >::type slerp360( A const & a, B const & b, C t ) { typedef typename deduce_quat2::type R; typedef typename quat_traits::scalar_type TR; TR const one = scalar_traits::value(1); TR const threshold = one - one / scalar_traits::value(2000); //0.9995 TR const dp = dot(a,b); TR const abs_dp = abs(dp); if( abs_dp > threshold ) return a*(one-t) + b*t; TR const th = acos(dp); TR const invsinth = one / sin(th); return a * (sin(th * (one-t)) * invsinth) + b * (sin(th * t) * invsinth); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value && is_quat::value && is_scalar::value, deduce_quat2 >::type slerp180( A const & a, B const & b, C t ) { typedef typename deduce_quat2::type R; typedef typename quat_traits::scalar_type TR; TR const one = scalar_traits::value(1); TR const threshold = one - one / scalar_traits::value(2000); //0.9995 TR const dp = dot(a,b); TR const abs_dp = abs(dp); if( abs_dp > threshold ) return a*(one-t)*sign(dp) + b*t; TR const th = acos(abs_dp); TR const invsinth = one / sin(th); return a * (sin(th * (one-t)) * invsinth * sign(dp)) + b * (sin(th * t) * invsinth); } template BOOST_QVM_DEPRECATED("please use slerp180 or slerp360") BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< is_quat::value && is_quat::value && is_scalar::value, deduce_quat2 >::type slerp( A const & a, B const & b, C t ) { return slerp360(a, b, t); } //////////////////////////////////////////////// namespace qvm_detail { template class qref_ { qref_( qref_ const & ); qref_ & operator=( qref_ const & ); ~qref_(); public: template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL qref_ & operator=( R const & x ) { assign(*this,x); return *this; } template = 201103L , class = typename enable_if >::type #endif > BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL operator R() const { R r; assign(r,*this); return r; } }; template ::value> struct qref_write_traits; template struct qref_write_traits { typedef typename quat_traits::scalar_type scalar_type; typedef qvm_detail::qref_ this_quaternion; template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type & write_element( this_quaternion & x ) { BOOST_QVM_STATIC_ASSERT(I>=0); BOOST_QVM_STATIC_ASSERT(I<4); return quat_traits::template write_element(reinterpret_cast(x)); } }; template struct qref_write_traits { typedef typename quat_traits::scalar_type scalar_type; typedef qvm_detail::qref_ this_quaternion; template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL void write_element( this_quaternion & x, scalar_type s ) { BOOST_QVM_STATIC_ASSERT(I>=0); BOOST_QVM_STATIC_ASSERT(I<4); quat_traits::template write_element(reinterpret_cast(x), s); } }; } template struct quat_traits; template struct quat_traits< qvm_detail::qref_ >: qvm_detail::qref_write_traits { typedef typename quat_traits::scalar_type scalar_type; typedef qvm_detail::qref_ this_quaternion; template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element( this_quaternion const & x ) { BOOST_QVM_STATIC_ASSERT(I>=0); BOOST_QVM_STATIC_ASSERT(I<4); return quat_traits::template read_element(reinterpret_cast(x)); } }; template struct deduce_quat< qvm_detail::qref_ > { typedef quat::scalar_type> type; }; template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL typename enable_if_c< is_quat::value, qvm_detail::qref_ const &>::type qref( Q const & a ) { return reinterpret_cast const &>(a); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL typename enable_if_c< is_quat::value, qvm_detail::qref_ &>::type qref( Q & a ) { return reinterpret_cast &>(a); } //////////////////////////////////////////////// namespace qvm_detail { template class zero_q_ { zero_q_( zero_q_ const & ); zero_q_ & operator=( zero_q_ const & ); ~zero_q_(); public: template = 201103L , class = typename enable_if >::type #endif > BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL operator R() const { R r; assign(r,*this); return r; } }; } template struct quat_traits< qvm_detail::zero_q_ > { typedef qvm_detail::zero_q_ this_quaternion; typedef T scalar_type; template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element( this_quaternion const & ) { BOOST_QVM_STATIC_ASSERT(I>=0); BOOST_QVM_STATIC_ASSERT(I<4); return scalar_traits::value(0); } static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element_idx( int i, this_quaternion const & ) { BOOST_QVM_ASSERT(i>=0); BOOST_QVM_ASSERT(i<4); return scalar_traits::value(0); } }; template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL qvm_detail::zero_q_ const & zero_quat() { return *(qvm_detail::zero_q_ const *)qvm_detail::get_valid_ptr_quat_operations(); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, void>::type set_zero( A & a ) { typedef typename quat_traits::scalar_type T; T const zero=scalar_traits::value(0); write_quat_element<0>(a,zero); write_quat_element<1>(a,zero); write_quat_element<2>(a,zero); write_quat_element<3>(a,zero); } //////////////////////////////////////////////// namespace qvm_detail { template struct rot_quat_ { typedef typename vec_traits::scalar_type scalar_type; scalar_type a[4]; template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE rot_quat_( V const & axis, Angle angle ) { scalar_type const x=vec_traits::template read_element<0>(axis); scalar_type const y=vec_traits::template read_element<1>(axis); scalar_type const z=vec_traits::template read_element<2>(axis); scalar_type const m2=x*x+y*y+z*z; if( m2==scalar_traits::value(0) ) BOOST_QVM_THROW_EXCEPTION(zero_magnitude_error()); scalar_type const rm=scalar_traits::value(1)/sqrt(m2); angle/=2; scalar_type const s=sin(angle); a[0] = cos(angle); a[1] = rm*x*s; a[2] = rm*y*s; a[3] = rm*z*s; } template = 201103L , class = typename enable_if >::type #endif > BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL operator R() const { R r; assign(r,*this); return r; } }; } template struct quat_traits< qvm_detail::rot_quat_ > { typedef qvm_detail::rot_quat_ this_quaternion; typedef typename this_quaternion::scalar_type scalar_type; template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element( this_quaternion const & x ) { BOOST_QVM_STATIC_ASSERT(I>=0); BOOST_QVM_STATIC_ASSERT(I<4); return x.a[I]; } }; template struct deduce_quat< qvm_detail::rot_quat_ > { typedef quat::scalar_type> type; }; template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE typename enable_if_c< is_vec::value && vec_traits::dim==3, qvm_detail::rot_quat_ >::type rot_quat( A const & axis, Angle angle ) { return qvm_detail::rot_quat_(axis,angle); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value && is_vec::value && vec_traits::dim==3, void>::type set_rot( A & a, B const & axis, Angle angle ) { assign(a,rot_quat(axis,angle)); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value && is_vec::value && vec_traits::dim==3, void>::type rotate( A & a, B const & axis, Angle angle ) { a *= rot_quat(axis,angle); } //////////////////////////////////////////////// namespace qvm_detail { template struct rotx_quat_ { BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL rotx_quat_() { } template = 201103L , class = typename enable_if >::type #endif > BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL operator R() const { R r; assign(r,*this); return r; } private: rotx_quat_( rotx_quat_ const & ); rotx_quat_ & operator=( rotx_quat_ const & ); ~rotx_quat_(); }; template struct rotx_q_get { template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL T get( T const & ) { return scalar_traits::value(0); } }; template <> struct rotx_q_get<1> { template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL T get( T const & angle ) { return sin(angle/2); } }; template <> struct rotx_q_get<0> { template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL T get( T const & angle ) { return cos(angle/2); } }; } template struct quat_traits< qvm_detail::rotx_quat_ > { typedef qvm_detail::rotx_quat_ this_quaternion; typedef Angle scalar_type; template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element( this_quaternion const & x ) { BOOST_QVM_STATIC_ASSERT(I>=0); BOOST_QVM_STATIC_ASSERT(I<4); return qvm_detail::rotx_q_get::get(reinterpret_cast(x)); } }; template struct deduce_quat< qvm_detail::rotx_quat_ > { typedef quat type; }; template struct deduce_quat2< qvm_detail::rotx_quat_, qvm_detail::rotx_quat_ > { typedef quat type; }; template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL qvm_detail::rotx_quat_ const & rotx_quat( Angle const & angle ) { return reinterpret_cast const &>(angle); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, void>::type set_rotx( A & a, Angle angle ) { assign(a,rotx_quat(angle)); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, void>::type rotate_x( A & a, Angle angle ) { a *= rotx_quat(angle); } //////////////////////////////////////////////// namespace qvm_detail { template struct roty_quat_ { BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL roty_quat_() { } template = 201103L , class = typename enable_if >::type #endif > BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL operator R() const { R r; assign(r,*this); return r; } private: roty_quat_( roty_quat_ const & ); roty_quat_ & operator=( roty_quat_ const & ); ~roty_quat_(); }; template struct roty_q_get { template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL T get( T const & ) { return scalar_traits::value(0); } }; template <> struct roty_q_get<2> { template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL T get( T const & angle ) { return sin(angle/2); } }; template <> struct roty_q_get<0> { template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL T get( T const & angle ) { return cos(angle/2); } }; } template struct quat_traits< qvm_detail::roty_quat_ > { typedef qvm_detail::roty_quat_ this_quaternion; typedef Angle scalar_type; template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element( this_quaternion const & x ) { BOOST_QVM_STATIC_ASSERT(I>=0); BOOST_QVM_STATIC_ASSERT(I<4); return qvm_detail::roty_q_get::get(reinterpret_cast(x)); } }; template struct deduce_quat< qvm_detail::roty_quat_ > { typedef quat type; }; template struct deduce_quat2< qvm_detail::roty_quat_, qvm_detail::roty_quat_ > { typedef quat type; }; template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL qvm_detail::roty_quat_ const & roty_quat( Angle const & angle ) { return reinterpret_cast const &>(angle); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, void>::type set_roty( A & a, Angle angle ) { assign(a,roty_quat(angle)); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, void>::type rotate_y( A & a, Angle angle ) { a *= roty_quat(angle); } //////////////////////////////////////////////// namespace qvm_detail { template struct rotz_quat_ { BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL rotz_quat_() { } template = 201103L , class = typename enable_if >::type #endif > BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL operator R() const { R r; assign(r,*this); return r; } private: rotz_quat_( rotz_quat_ const & ); rotz_quat_ & operator=( rotz_quat_ const & ); ~rotz_quat_(); }; template struct rotz_q_get { template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL T get( T const & ) { return scalar_traits::value(0); } }; template <> struct rotz_q_get<3> { template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL T get( T const & angle ) { return sin(angle/2); } }; template <> struct rotz_q_get<0> { template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL T get( T const & angle ) { return cos(angle/2); } }; } template struct quat_traits< qvm_detail::rotz_quat_ > { typedef qvm_detail::rotz_quat_ this_quaternion; typedef Angle scalar_type; template static BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL scalar_type read_element( this_quaternion const & x ) { BOOST_QVM_STATIC_ASSERT(I>=0); BOOST_QVM_STATIC_ASSERT(I<4); return qvm_detail::rotz_q_get::get(reinterpret_cast(x)); } }; template struct deduce_quat< qvm_detail::rotz_quat_ > { typedef quat type; }; template struct deduce_quat2< qvm_detail::rotz_quat_, qvm_detail::rotz_quat_ > { typedef quat type; }; template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_TRIVIAL qvm_detail::rotz_quat_ const & rotz_quat( Angle const & angle ) { return reinterpret_cast const &>(angle); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, void>::type set_rotz( A & a, Angle angle ) { assign(a,rotz_quat(angle)); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value, void>::type rotate_z( A & a, Angle angle ) { a *= rotz_quat(angle); } template BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_OPERATIONS typename enable_if_c< is_quat::value && is_vec::value && vec_traits::dim==3, typename quat_traits::scalar_type>::type axis_angle( A const & a, B & b ) { typedef typename quat_traits::scalar_type T; T a0=quat_traits::template read_element<0>(a); T a1=quat_traits::template read_element<1>(a); T a2=quat_traits::template read_element<2>(a); T a3=quat_traits::template read_element<3>(a); if( a0>1 ) { T const m2=a0*a0+a1*a1+a2*a2+a3*a3; if( m2==scalar_traits::value(0) ) BOOST_QVM_THROW_EXCEPTION(zero_magnitude_error()); T const s=sqrt(m2); a0/=s; a1/=s; a2/=s; a3/=s; } if( T s=sqrt(1-a0*a0) ) { write_vec_element<0>(b, a1/s); write_vec_element<1>(b, a2/s); write_vec_element<2>(b, a3/s); } else { typedef typename vec_traits::scalar_type U; write_vec_element<0>(b, scalar_traits::value(1)); write_vec_element<1>(b, scalar_traits::value(0)); write_vec_element<2>(b, scalar_traits::value(0)); } return scalar_traits::value(2) * qvm::acos(a0); } //////////////////////////////////////////////// namespace sfinae { using ::boost::qvm::assign; using ::boost::qvm::cmp; using ::boost::qvm::convert_to; using ::boost::qvm::conjugate; using ::boost::qvm::set_identity; using ::boost::qvm::set_zero; using ::boost::qvm::scalar_cast; using ::boost::qvm::operator/=; using ::boost::qvm::operator/; using ::boost::qvm::dot; using ::boost::qvm::operator==; using ::boost::qvm::inverse; using ::boost::qvm::mag_sqr; using ::boost::qvm::mag; using ::boost::qvm::slerp360; using ::boost::qvm::slerp180; using ::boost::qvm::slerp; using ::boost::qvm::operator-=; using ::boost::qvm::operator-; using ::boost::qvm::operator*=; using ::boost::qvm::operator*; using ::boost::qvm::operator!=; using ::boost::qvm::normalized; using ::boost::qvm::normalize; using ::boost::qvm::operator+=; using ::boost::qvm::operator+; using ::boost::qvm::qref; using ::boost::qvm::rot_quat; using ::boost::qvm::set_rot; using ::boost::qvm::rotate; using ::boost::qvm::rotx_quat; using ::boost::qvm::set_rotx; using ::boost::qvm::rotate_x; using ::boost::qvm::roty_quat; using ::boost::qvm::set_roty; using ::boost::qvm::rotate_y; using ::boost::qvm::rotz_quat; using ::boost::qvm::set_rotz; using ::boost::qvm::rotate_z; } } } #endif