0.9.7
matrix_inverse.hpp
Go to the documentation of this file.
1 
41 #pragma once
42 
43 // Dependencies
44 #include "../detail/setup.hpp"
45 #include "../matrix.hpp"
46 #include "../mat2x2.hpp"
47 #include "../mat3x3.hpp"
48 #include "../mat4x4.hpp"
49 
50 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
51 # pragma message("GLM: GLM_GTC_matrix_inverse extension included")
52 #endif
53 
54 namespace glm
55 {
58 
64  template <typename genType>
65  GLM_FUNC_DECL genType affineInverse(genType const & m);
66 
72  template <typename genType>
73  GLM_FUNC_DECL genType inverseTranspose(genType const & m);
74 
76 }//namespace glm
77 
78 #include "matrix_inverse.inl"
GLM_FUNC_DECL genType inverseTranspose(genType const &m)
Compute the inverse transpose of a matrix.
Definition: _noise.hpp:40
GLM_FUNC_DECL genType affineInverse(genType const &m)
Fast matrix inverse for affine matrix.