From 804ec70c2e1b5d9a85943d6195e5a0c79aee1a2c Mon Sep 17 00:00:00 2001 From: Ebi Sadeghi <38144193+EbiSadeghi@users.noreply.github.com> Date: Mon, 11 Jul 2022 19:50:45 -0700 Subject: [PATCH 1/3] Spelling corrections Minor grammar and spelling. --- readme.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index 55b9678c..dd47f459 100644 --- a/readme.md +++ b/readme.md @@ -723,14 +723,14 @@ glm::mat4 camera(float Translate, glm::vec2 const& Rotate) - Increased static_assert coverage - Replaced GLM traits by STL traits when possible - Allowed including individual core feature -- Increased unit tests completness +- Increased unit tests completeness - Added creating of a quaternion from two vectors - Added C++11 initializer lists - Fixed umulExtended and imulExtended implementations for vector types (#76) - Fixed CUDA coverage for GTC extensions - Added GTX_io extension - Improved GLM messages enabled when defining GLM_MESSAGES -- Hidden matrix _inverse function implementation detail into private section +- Hidden matrix_inverse function implementation detail into private section --- ### [GLM 0.9.4.6](https://github.com/g-truc/glm/releases/tag/0.9.4.6) - 2013-09-20 @@ -890,7 +890,7 @@ generation distribution --- ### [GLM 0.9.2.7](https://github.com/g-truc/glm/releases/tag/0.9.2.7) - 2011-10-24 - Added more swizzling constructors -- Added missing none-squared matrix products +- Added missing non-squared matrix products --- ### [GLM 0.9.2.6](https://github.com/g-truc/glm/releases/tag/0.9.2.6) - 2011-10-01 @@ -1219,7 +1219,7 @@ generation distribution ### GLM 0.2 - 2005-05-05 - Improve adaptative from GLSL. - Add experimental extensions based on OpenGL extension process. -- Fixe bugs. +- Fixed bugs. --- ### GLM 0.1 - 2005-02-21 From 8415b031f9831bd489f74a1c0356d1900fe6f205 Mon Sep 17 00:00:00 2001 From: Ebi Sadeghi <38144193+EbiSadeghi@users.noreply.github.com> Date: Mon, 11 Jul 2022 19:55:22 -0700 Subject: [PATCH 2/3] Changed variable description from x to v The description of the function "exp" erroneously referred to "x" rather than "v". Rectified. --- doc/api/a00242.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/a00242.html b/doc/api/a00242.html index 3cead978..475acbfd 100644 --- a/doc/api/a00242.html +++ b/doc/api/a00242.html @@ -89,7 +89,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); Functions template<length_t L, typename T , qualifier Q> GLM_FUNC_DECL vec< L, T, Q > exp (vec< L, T, Q > const &v) - Returns the natural exponentiation of x, i.e., e^x. More...
+ Returns the natural exponentiation of v, i.e., e^v. More...
  template<length_t L, typename T , qualifier Q> GLM_FUNC_DECL vec< L, T, Q > exp2 (vec< L, T, Q > const &v) From bfa82837ea95deb3d9bc2960d0577ee333fdabe8 Mon Sep 17 00:00:00 2001 From: Ebi Sadeghi <38144193+EbiSadeghi@users.noreply.github.com> Date: Tue, 20 Sep 2022 20:20:58 -0700 Subject: [PATCH 3/3] Changed the e^v clarification in source Earlier I made the change in the html generated by doxygen rather than the source used to generate the documentation. --- glm/exponential.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/exponential.hpp b/glm/exponential.hpp index f8fb886f..1614f769 100644 --- a/glm/exponential.hpp +++ b/glm/exponential.hpp @@ -35,7 +35,7 @@ namespace glm template GLM_FUNC_DECL vec pow(vec const& base, vec const& exponent); - /// Returns the natural exponentiation of x, i.e., e^x. + /// Returns the natural exponentiation of v, i.e., e^v. /// /// @param v exp function is defined for input values of v defined in the range (inf-, inf+) in the limit of the type qualifier. /// @tparam L An integer between 1 and 4 included that qualify the dimension of the vector.