#ifndef BOOST_QVM_GEN_VEC_MAT_OPERATIONS2_HPP_INCLUDED #define BOOST_QVM_GEN_VEC_MAT_OPERATIONS2_HPP_INCLUDED /// Copyright (c) 2008-2021 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) /// This file was generated by a program. Do not edit manually. #include #include #include #include #include namespace boost { namespace qvm { template BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< mat_traits::rows==2 && mat_traits::cols==2 && vec_traits::dim==2, deduce_vec2 >::type operator*( A const & a, B const & b ) { typedef typename mat_traits::scalar_type Ta; typedef typename vec_traits::scalar_type Tb; Ta const a00 = mat_traits::template read_element<0,0>(a); Ta const a01 = mat_traits::template read_element<0,1>(a); Ta const a10 = mat_traits::template read_element<1,0>(a); Ta const a11 = mat_traits::template read_element<1,1>(a); Tb const b0 = vec_traits::template read_element<0>(b); Tb const b1 = vec_traits::template read_element<1>(b); typedef typename deduce_vec2::type R; BOOST_QVM_STATIC_ASSERT(vec_traits::dim==2); R r; vec_traits::template write_element<0>(r)=a00*b0+a01*b1; vec_traits::template write_element<1>(r)=a10*b0+a11*b1; return r; } namespace sfinae { using ::boost::qvm::operator*; } namespace qvm_detail { template struct mul_mv_defined; template <> struct mul_mv_defined<2,2> { static bool const value=true; }; } template BOOST_QVM_INLINE_OPERATIONS typename lazy_enable_if_c< mat_traits::rows==2 && mat_traits::cols==2 && vec_traits::dim==2, deduce_vec2 >::type operator*( A const & a, B const & b ) { typedef typename vec_traits::scalar_type Ta; typedef typename mat_traits::scalar_type Tb; Ta const a0 = vec_traits::template read_element<0>(a); Ta const a1 = vec_traits::template read_element<1>(a); Tb const b00 = mat_traits::template read_element<0,0>(b); Tb const b01 = mat_traits::template read_element<0,1>(b); Tb const b10 = mat_traits::template read_element<1,0>(b); Tb const b11 = mat_traits::template read_element<1,1>(b); typedef typename deduce_vec2::type R; BOOST_QVM_STATIC_ASSERT(vec_traits::dim==2); R r; vec_traits::template write_element<0>(r)=a0*b00+a1*b10; vec_traits::template write_element<1>(r)=a0*b01+a1*b11; return r; } namespace sfinae { using ::boost::qvm::operator*; } namespace qvm_detail { template struct mul_vm_defined; template <> struct mul_vm_defined<2,2> { static bool const value=true; }; } } } #endif