00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_inverse
00014 #define glm_gtx_inverse
00015
00016
00017 #include "../glm.hpp"
00018 #include "../gtc/matrix_operation.hpp"
00019
00020 namespace glm{
00021 namespace gtx{
00023 namespace inverse
00024 {
00025 using namespace gtc::matrix_operation;
00026
00029 template <typename genType>
00030 genType affineInverse(genType const & m);
00031
00032 }
00033 }
00034 }
00035
00036 #define GLM_GTX_inverse namespace gtx::inverse
00037 #ifndef GLM_GTX_GLOBAL
00038 namespace glm {using GLM_GTX_inverse;}
00039 #endif//GLM_GTX_GLOBAL
00040
00041 #include "inverse.inl"
00042
00043 #endif//glm_gtx_inverse