00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtc_matrix_inverse
00014 #define glm_gtc_matrix_inverse
00015
00016
00017 #include "../glm.hpp"
00018
00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00020 # pragma message("GLM: GLM_GTC_matrix_inverse extension included")
00021 #endif
00022
00023 namespace glm{
00024 namespace gtc{
00026 namespace matrix_inverse
00027 {
00030
00033 template <typename genType>
00034 genType affineInverse(genType const & m);
00035
00038 template <typename genType>
00039 inline typename genType::value_type inverseTranspose(
00040 genType const & m);
00041
00043
00044 }
00045 }
00046 }
00047
00048 #include "matrix_inverse.inl"
00049
00050 namespace glm{using namespace gtc::matrix_inverse;}
00051
00052 #endif//glm_gtc_matrix_inverse