matrix_inverse.hpp
00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2005-12-21
00005 // Updated : 2010-12-13
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtc/matrix_inverse.hpp
00009 // Dependency:
00010 // - GLM core
00012 
00013 #ifndef glm_gtc_matrix_inverse
00014 #define glm_gtc_matrix_inverse
00015 
00016 // Dependency:
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{
00025 namespace matrix_inverse 
00026 {
00029 
00032         template <typename genType> 
00033         genType affineInverse(genType const & m);
00034 
00037         template <typename genType> 
00038         GLM_FUNC_QUALIFIER typename genType::value_type inverseTranspose(
00039                 genType const & m);
00040 
00042 
00043 }//namespace matrix_inverse
00044 }//namespace gtc
00045 }//namespace glm
00046 
00047 #include "matrix_inverse.inl"
00048 
00049 namespace glm{using namespace gtc::matrix_inverse;}
00050 
00051 #endif//glm_gtc_matrix_inverse