summaryrefslogtreecommitdiffstats
path: root/external/include/glm/gtc/matrix_inverse.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'external/include/glm/gtc/matrix_inverse.hpp')
-rw-r--r--external/include/glm/gtc/matrix_inverse.hpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/external/include/glm/gtc/matrix_inverse.hpp b/external/include/glm/gtc/matrix_inverse.hpp
index 589381d..97e8d89 100644
--- a/external/include/glm/gtc/matrix_inverse.hpp
+++ b/external/include/glm/gtc/matrix_inverse.hpp
@@ -6,8 +6,9 @@
/// @defgroup gtc_matrix_inverse GLM_GTC_matrix_inverse
/// @ingroup gtc
///
+/// Include <glm/gtc/matrix_integer.hpp> to use the features of this extension.
+///
/// Defines additional matrix inverting functions.
-/// <glm/gtc/matrix_inverse.hpp> need to be included to use these functionalities.
#pragma once
@@ -28,20 +29,20 @@ namespace glm
/// @{
/// Fast matrix inverse for affine matrix.
- ///
+ ///
/// @param m Input matrix to invert.
- /// @tparam genType Squared floating-point matrix: half, float or double. Inverse of matrix based of half-precision floating point value is highly innacurate.
+ /// @tparam genType Squared floating-point matrix: half, float or double. Inverse of matrix based of half-qualifier floating point value is highly innacurate.
/// @see gtc_matrix_inverse
- template <typename genType>
- GLM_FUNC_DECL genType affineInverse(genType const & m);
+ template<typename genType>
+ GLM_FUNC_DECL genType affineInverse(genType const& m);
/// Compute the inverse transpose of a matrix.
- ///
+ ///
/// @param m Input matrix to invert transpose.
- /// @tparam genType Squared floating-point matrix: half, float or double. Inverse of matrix based of half-precision floating point value is highly innacurate.
+ /// @tparam genType Squared floating-point matrix: half, float or double. Inverse of matrix based of half-qualifier floating point value is highly innacurate.
/// @see gtc_matrix_inverse
- template <typename genType>
- GLM_FUNC_DECL genType inverseTranspose(genType const & m);
+ template<typename genType>
+ GLM_FUNC_DECL genType inverseTranspose(genType const& m);
/// @}
}//namespace glm