From f6be32ed0d97847afad1cdf7addbdfc47ac12cc6 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Fri, 31 Aug 2018 19:02:16 +0200 Subject: [PATCH] Completed manual for GLM 0.9.9.1 --- manual.md | 18 +++++++++++++----- readme.md | 3 ++- 2 files changed, 15 insertions(+), 6 deletions(-) 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: