mirror of
https://github.com/g-truc/glm.git
synced 2024-11-22 08:54:35 +00:00
Merge pull request #1109 from EbiSadeghi/master
Documentation: spelling, grammar, and clarity #1109
This commit is contained in:
commit
e250ffe36d
@ -89,7 +89,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
|||||||
Functions</h2></td></tr>
|
Functions</h2></td></tr>
|
||||||
<tr class="memitem:ga071566cadc7505455e611f2a0353f4d4"><td class="memTemplParams" colspan="2">template<length_t L, typename T , qualifier Q> </td></tr>
|
<tr class="memitem:ga071566cadc7505455e611f2a0353f4d4"><td class="memTemplParams" colspan="2">template<length_t L, typename T , qualifier Q> </td></tr>
|
||||||
<tr class="memitem:ga071566cadc7505455e611f2a0353f4d4"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL vec< L, T, Q > </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00242.html#ga071566cadc7505455e611f2a0353f4d4">exp</a> (vec< L, T, Q > const &v)</td></tr>
|
<tr class="memitem:ga071566cadc7505455e611f2a0353f4d4"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL vec< L, T, Q > </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00242.html#ga071566cadc7505455e611f2a0353f4d4">exp</a> (vec< L, T, Q > const &v)</td></tr>
|
||||||
<tr class="memdesc:ga071566cadc7505455e611f2a0353f4d4"><td class="mdescLeft"> </td><td class="mdescRight">Returns the natural exponentiation of x, i.e., e^x. <a href="a00242.html#ga071566cadc7505455e611f2a0353f4d4">More...</a><br /></td></tr>
|
<tr class="memdesc:ga071566cadc7505455e611f2a0353f4d4"><td class="mdescLeft"> </td><td class="mdescRight">Returns the natural exponentiation of v, i.e., e^v. <a href="a00242.html#ga071566cadc7505455e611f2a0353f4d4">More...</a><br /></td></tr>
|
||||||
<tr class="separator:ga071566cadc7505455e611f2a0353f4d4"><td class="memSeparator" colspan="2"> </td></tr>
|
<tr class="separator:ga071566cadc7505455e611f2a0353f4d4"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
<tr class="memitem:gaff17ace6b579a03bf223ed4d1ed2cd16"><td class="memTemplParams" colspan="2">template<length_t L, typename T , qualifier Q> </td></tr>
|
<tr class="memitem:gaff17ace6b579a03bf223ed4d1ed2cd16"><td class="memTemplParams" colspan="2">template<length_t L, typename T , qualifier Q> </td></tr>
|
||||||
<tr class="memitem:gaff17ace6b579a03bf223ed4d1ed2cd16"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL vec< L, T, Q > </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00242.html#gaff17ace6b579a03bf223ed4d1ed2cd16">exp2</a> (vec< L, T, Q > const &v)</td></tr>
|
<tr class="memitem:gaff17ace6b579a03bf223ed4d1ed2cd16"><td class="memTemplItemLeft" align="right" valign="top">GLM_FUNC_DECL vec< L, T, Q > </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00242.html#gaff17ace6b579a03bf223ed4d1ed2cd16">exp2</a> (vec< L, T, Q > const &v)</td></tr>
|
||||||
|
@ -35,7 +35,7 @@ namespace glm
|
|||||||
template<length_t L, typename T, qualifier Q>
|
template<length_t L, typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL vec<L, T, Q> pow(vec<L, T, Q> const& base, vec<L, T, Q> const& exponent);
|
GLM_FUNC_DECL vec<L, T, Q> pow(vec<L, T, Q> const& base, vec<L, T, Q> 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.
|
/// @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.
|
/// @tparam L An integer between 1 and 4 included that qualify the dimension of the vector.
|
||||||
|
@ -723,14 +723,14 @@ glm::mat4 camera(float Translate, glm::vec2 const& Rotate)
|
|||||||
- Increased static_assert coverage
|
- Increased static_assert coverage
|
||||||
- Replaced GLM traits by STL traits when possible
|
- Replaced GLM traits by STL traits when possible
|
||||||
- Allowed including individual core feature
|
- Allowed including individual core feature
|
||||||
- Increased unit tests completness
|
- Increased unit tests completeness
|
||||||
- Added creating of a quaternion from two vectors
|
- Added creating of a quaternion from two vectors
|
||||||
- Added C++11 initializer lists
|
- Added C++11 initializer lists
|
||||||
- Fixed umulExtended and imulExtended implementations for vector types (#76)
|
- Fixed umulExtended and imulExtended implementations for vector types (#76)
|
||||||
- Fixed CUDA coverage for GTC extensions
|
- Fixed CUDA coverage for GTC extensions
|
||||||
- Added GTX_io extension
|
- Added GTX_io extension
|
||||||
- Improved GLM messages enabled when defining GLM_MESSAGES
|
- 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
|
### [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
|
### [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 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
|
### [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
|
### GLM 0.2 - 2005-05-05
|
||||||
- Improve adaptative from GLSL.
|
- Improve adaptative from GLSL.
|
||||||
- Add experimental extensions based on OpenGL extension process.
|
- Add experimental extensions based on OpenGL extension process.
|
||||||
- Fixe bugs.
|
- Fixed bugs.
|
||||||
|
|
||||||
---
|
---
|
||||||
### GLM 0.1 - 2005-02-21
|
### GLM 0.1 - 2005-02-21
|
||||||
|
Loading…
Reference in New Issue
Block a user