From 1afa68151244e5d4ffa33ef19469a710b766d166 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 26 Jul 2018 18:00:31 +0200 Subject: [PATCH] - Added identity functions #765 --- glm/detail/qualifier.hpp | 40 ++++++++++++++++++++++++ glm/gtc/matrix_transform.hpp | 4 +++ glm/gtc/matrix_transform.inl | 6 ++++ glm/gtc/quaternion.hpp | 5 +++ glm/gtc/quaternion.inl | 6 ++++ readme.md | 1 + test/gtc/gtc_quaternion.cpp | 60 ++---------------------------------- 7 files changed, 65 insertions(+), 57 deletions(-) diff --git a/glm/detail/qualifier.hpp b/glm/detail/qualifier.hpp index 9765fb2f..25ddf8ab 100644 --- a/glm/detail/qualifier.hpp +++ b/glm/detail/qualifier.hpp @@ -152,5 +152,45 @@ namespace detail typedef glm_u64vec4 type; }; # endif + + enum genTypeEnum + { + GENTYPE_VEC, + GENTYPE_MAT, + GENTYPE_QUAT + }; + + template + struct genTypeTrait + {}; + + template + struct genTypeTrait > + { + static const genTypeEnum GENTYPE = GENTYPE_MAT; + }; + + template + struct init_gentype + { + }; + + template + struct init_gentype + { + GLM_FUNC_QUALIFIER static genType identity() + { + return genType(1, 0, 0, 0); + } + }; + + template + struct init_gentype + { + GLM_FUNC_QUALIFIER static genType identity() + { + return genType(1); + } + }; }//namespace detail }//namespace glm diff --git a/glm/gtc/matrix_transform.hpp b/glm/gtc/matrix_transform.hpp index ff07c55f..4d3b8c83 100644 --- a/glm/gtc/matrix_transform.hpp +++ b/glm/gtc/matrix_transform.hpp @@ -36,6 +36,10 @@ namespace glm /// @addtogroup gtc_matrix_transform /// @{ + /// Builds an identity matrix. + template + GLM_FUNC_DECL genType identity(); + /// Builds a translation 4 * 4 matrix created from a vector of 3 components. /// /// @param m Input matrix multiplied by this translation matrix. diff --git a/glm/gtc/matrix_transform.inl b/glm/gtc/matrix_transform.inl index 5c3c20a4..7d0982d6 100644 --- a/glm/gtc/matrix_transform.inl +++ b/glm/gtc/matrix_transform.inl @@ -7,6 +7,12 @@ namespace glm { + template + GLM_FUNC_QUALIFIER genType identity() + { + return detail::init_gentype::GENTYPE>::identity(); + } + template GLM_FUNC_QUALIFIER mat<4, 4, T, Q> translate(mat<4, 4, T, Q> const& m, vec<3, T, Q> const& v) { diff --git a/glm/gtc/quaternion.hpp b/glm/gtc/quaternion.hpp index 83158a5d..552ea33c 100644 --- a/glm/gtc/quaternion.hpp +++ b/glm/gtc/quaternion.hpp @@ -19,6 +19,7 @@ #include "../vec3.hpp" #include "../vec4.hpp" #include "../gtc/constants.hpp" +#include "../gtc/matrix_transform.hpp" #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED) # pragma message("GLM: GLM_GTC_quaternion extension included") @@ -159,6 +160,10 @@ namespace glm template GLM_FUNC_DECL bool operator!=(tquat const& q1, tquat const& q2); + /// Builds an identity quaternion. + template + GLM_FUNC_DECL genType identity(); + /// Returns the length of the quaternion. /// /// @tparam T Floating-point scalar types. diff --git a/glm/gtc/quaternion.inl b/glm/gtc/quaternion.inl index 36cf5b8f..953c53f7 100644 --- a/glm/gtc/quaternion.inl +++ b/glm/gtc/quaternion.inl @@ -10,6 +10,12 @@ namespace glm{ namespace detail { + template + struct genTypeTrait > + { + static const genTypeEnum GENTYPE = GENTYPE_QUAT; + }; + template struct compute_dot, T, Aligned> { diff --git a/readme.md b/readme.md index ff5cc9b4..2cefd3fd 100644 --- a/readme.md +++ b/readme.md @@ -63,6 +63,7 @@ glm::mat4 camera(float Translate, glm::vec2 const& Rotate) - Added detection of Visual C++ 2017 toolsets - Added missing equal and notEqual with epsilon for quaternion types in EXT_vector_relational - Added missing equal and notEqual with epsilon for matrix types in EXT_vector_relational +- Added identity functions #765 #### Fixes: - Fixed build problems due to printf and std::clock_t #778 diff --git a/test/gtc/gtc_quaternion.cpp b/test/gtc/gtc_quaternion.cpp index f1bdf0c1..80653b88 100644 --- a/test/gtc/gtc_quaternion.cpp +++ b/test/gtc/gtc_quaternion.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -317,71 +318,16 @@ static int test_constexpr() return 0; } -using namespace glm; - -enum genTypeEnum -{ - GENTYPE_VEC, - GENTYPE_MAT, - GENTYPE_QUAT -}; - -template -struct genTypeTrait -{}; - -template -struct genTypeTrait > -{ - static const genTypeEnum GENTYPE = GENTYPE_QUAT; -}; - -template -struct genTypeTrait > -{ - static const genTypeEnum GENTYPE = GENTYPE_MAT; -}; - -template -struct init_gentype -{ -}; - -template -struct init_gentype -{ - static genType identity() - { - return genType(1, 0, 0, 0); - } -}; - -template -struct init_gentype -{ - static genType identity() - { - return genType(1); - } -}; - -template -inline genType identity() -{ - //return init_gentype::identity(); - return init_gentype::GENTYPE>::identity(); -} - int test_identity() { int Error = 0; - glm::quat const Q = identity(); + glm::quat const Q = glm::identity(); Error += glm::all(glm::equal(Q, glm::quat(1, 0, 0, 0), 0.0001f)) ? 0 : 1; Error += glm::any(glm::notEqual(Q, glm::quat(1, 0, 0, 0), 0.0001f)) ? 1 : 0; - glm::mat4 const M = identity(); + glm::mat4 const M = glm::identity(); glm::mat4 const N(1.0f); Error += glm::all(glm::equal(M[0], N[0], 0.0001f)) ? 0 : 1;