summaryrefslogtreecommitdiffstats
path: root/external/include/glm/gtc/matrix_inverse.hpp
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-08-21 17:40:38 +0200
committerLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-08-21 17:40:38 +0200
commit2877f4eda3d1b0c7431039e3142ecf1a282a34b1 (patch)
tree58ad35e27ab2a3b8955f5adbf28f296670681ffc /external/include/glm/gtc/matrix_inverse.hpp
parentSmooth sun movement (diff)
downloadAltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar.gz
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar.bz2
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar.lz
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar.xz
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.tar.zst
AltCraft-2877f4eda3d1b0c7431039e3142ecf1a282a34b1.zip
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