0.9.6
matrix_inverse.hpp
Go to the documentation of this file.
1 
37 #pragma once
38 
39 // Dependencies
40 #include "../detail/setup.hpp"
41 
42 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
43 # pragma message("GLM: GLM_GTC_matrix_inverse extension included")
44 #endif
45 
46 namespace glm
47 {
50 
56  template <typename genType>
57  GLM_FUNC_DECL genType affineInverse(genType const & m);
58 
64  template <typename genType>
65  GLM_FUNC_DECL genType inverseTranspose(genType const & m);
66 
68 }//namespace glm
69 
70 #include "matrix_inverse.inl"
GLM_FUNC_DECL genType inverseTranspose(genType const &m)
Compute the inverse transpose of a matrix.
Definition: _noise.hpp:31
GLM_FUNC_DECL genType affineInverse(genType const &m)
Fast matrix inverse for affine matrix.