summaryrefslogtreecommitdiff
path: root/boost/qvm/mat_index.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/qvm/mat_index.hpp')
-rw-r--r--boost/qvm/mat_index.hpp145
1 files changed, 0 insertions, 145 deletions
diff --git a/boost/qvm/mat_index.hpp b/boost/qvm/mat_index.hpp
deleted file mode 100644
index e7bcdad1e5..0000000000
--- a/boost/qvm/mat_index.hpp
+++ /dev/null
@@ -1,145 +0,0 @@
-//Copyright (c) 2008-2016 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)
-
-#ifndef UUID_90273D9C0E5911E281B7981F6288709B
-#define UUID_90273D9C0E5911E281B7981F6288709B
-
-#include <boost/qvm/mat_traits.hpp>
-#include <boost/qvm/inline.hpp>
-#include <boost/qvm/assert.hpp>
-#include <boost/qvm/enable_if.hpp>
-#include <boost/qvm/error.hpp>
-#include <boost/exception/info.hpp>
-
-namespace
-boost
- {
- namespace
- qvm
- {
- ////////////////////////////////////////////////
-
- namespace
- qvm_detail
- {
- template <int R,int C>
- struct
- mat_index_read_defined
- {
- static bool const value=false;
- };
-
- template <int I,int N>
- struct
- matrix_r
- {
- template <class A>
- static
- BOOST_QVM_INLINE_CRITICAL
- typename mat_traits<A>::scalar_type
- read_element_idx( A const & a, int r, int c )
- {
- return (I/mat_traits<A>::cols)==r && (I%mat_traits<A>::cols)==c?
- mat_traits<A>::template read_element<I/mat_traits<A>::cols,I%mat_traits<A>::cols>(a) :
- matrix_r<I+1,N>::read_element_idx(a,r,c);
- }
- };
-
- template <int N>
- struct
- matrix_r<N,N>
- {
- template <class A>
- static
- BOOST_QVM_INLINE_TRIVIAL
- typename mat_traits<A>::scalar_type
- read_element_idx( A const & a, int, int )
- {
- BOOST_QVM_ASSERT(0);
- return mat_traits<A>::template read_element<0,0>(a);
- }
- };
- }
-
- template <class A>
- BOOST_QVM_INLINE_TRIVIAL
- typename boost::enable_if_c<
- is_mat<A>::value &&
- !qvm_detail::mat_index_read_defined<mat_traits<A>::rows,mat_traits<A>::cols>::value,
- typename mat_traits<A>::scalar_type>::type
- mat_index_read( A const & a, int r, int c )
- {
- return qvm_detail::matrix_r<0,mat_traits<A>::rows*mat_traits<A>::cols>::read_element_idx(a,r,c);
- }
-
- ////////////////////////////////////////////////
-
- namespace
- qvm_detail
- {
- template <int R,int C>
- struct
- mat_index_write_defined
- {
- static bool const value=false;
- };
-
- template <int I,int N>
- struct
- matrix_w
- {
- template <class A>
- static
- BOOST_QVM_INLINE_CRITICAL
- typename mat_traits<A>::scalar_type &
- write_element_idx( A & a, int r, int c )
- {
- return (I/mat_traits<A>::cols)==r && (I%mat_traits<A>::cols)==c?
- mat_traits<A>::template write_element<I/mat_traits<A>::cols,I%mat_traits<A>::cols>(a) :
- matrix_w<I+1,N>::write_element_idx(a,r,c);
- }
- };
-
- template <int N>
- struct
- matrix_w<N,N>
- {
- template <class A>
- static
- BOOST_QVM_INLINE_TRIVIAL
- typename mat_traits<A>::scalar_type &
- write_element_idx( A & a, int, int )
- {
- BOOST_QVM_ASSERT(0);
- return mat_traits<A>::template write_element<0,0>(a);
- }
- };
- }
-
- template <class A>
- BOOST_QVM_INLINE_TRIVIAL
- typename boost::enable_if_c<
- is_mat<A>::value &&
- !qvm_detail::mat_index_write_defined<mat_traits<A>::rows,mat_traits<A>::cols>::value,
- typename mat_traits<A>::scalar_type &>::type
- mat_index_write( A & a, int r, int c )
- {
- return qvm_detail::matrix_w<0,mat_traits<A>::rows*mat_traits<A>::cols>::write_element_idx(a,r,c);
- }
-
- ////////////////////////////////////////////////
-
- namespace
- sfinae
- {
- using ::boost::qvm::mat_index_read;
- using ::boost::qvm::mat_index_write;
- }
-
- ////////////////////////////////////////////////
- }
- }
-
-#endif