diff --git a/manual.md b/manual.md index cbb6980c..c934be7f 100644 --- a/manual.md +++ b/manual.md @@ -1273,21 +1273,29 @@ Include `` to use these features. #### 3.9.1. GLM_EXT_quaternion_float -TODO +This extension exposes single-precision floating point quaternion: `quat`. + +Include `` to use these features. #### 3.9.2. GLM_EXT_quaternion_double -TODO +This extension exposes double-precision floating point quaternion: `dquat`. + +Include `` to use these features. ### 3.10. Quaternion types with precision qualifiers #### 3.10.1. GLM_EXT_quaternion_float_precision -TODO +This extension exposes single-precision floating point quaternion using various precision in term of ULPs: `lowp_quat`, `mediump_quat` and `highp_quat`. + +Include `` to use these features. #### 3.10.2. GLM_EXT_quaternion_double_precision -TODO +This extension exposes double-precision floating point quaternion using various precision in term of ULPs: `lowp_dquat`, `mediump_dquat` and `highp_dquat`. + +Include `` to use these features. ### 3.11. Quaternion functions @@ -1311,7 +1319,7 @@ Include `` to use these features. #### 3.11.4. GLM_EXT_quaternion_exponential -TODO +This extensions expose exponential functions for quaternions such as `exp`, `log`, `pow` and `sqrt`. Include `` to use these features. diff --git a/readme.md b/readme.md index 0670cd92..ddfe1d39 100644 --- a/readme.md +++ b/readme.md @@ -61,13 +61,14 @@ glm::mat4 camera(float Translate, glm::vec2 const& Rotate) - Added Visual C++ language standard version detection #### Improvements: +- Added a section to the manual for contributing to GLM +- Refactor manual, lists all configuration defines - Added missing vec1 based constructors - Redesigned constexpr support which excludes both SIMD and constexpr #783 - Added detection of Visual C++ 2017 toolsets - Added identity functions #765 - Splitted headers into EXT extensions to improve compilation time #670 - Added separated performance tests -- Refactor manual, lists all configuration defines - Clarified refract valid range of the indices of refraction, between -1 and 1 inclusively #806 #### Fixes: