From 2877f4eda3d1b0c7431039e3142ecf1a282a34b1 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Tue, 21 Aug 2018 20:40:38 +0500 Subject: Update glm to 0.9.9.0 --- external/include/glm/gtc/matrix_inverse.hpp | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'external/include/glm/gtc/matrix_inverse.hpp') 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 to use the features of this extension. +/// /// Defines additional matrix inverting functions. -/// 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 - GLM_FUNC_DECL genType affineInverse(genType const & m); + template + 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 - GLM_FUNC_DECL genType inverseTranspose(genType const & m); + template + GLM_FUNC_DECL genType inverseTranspose(genType const& m); /// @} }//namespace glm -- cgit v1.2.3