diff --git a/glm/detail/glm.cpp b/glm/detail/glm.cpp index e9bbc700..baaf8480 100644 --- a/glm/detail/glm.cpp +++ b/glm/detail/glm.cpp @@ -237,14 +237,14 @@ template struct mat<4, 4, float32, highp>; template struct mat<4, 4, float64, highp>; // tquat type explicit instantiation -template struct tquat; -template struct tquat; +template struct qua; +template struct qua; -template struct tquat; -template struct tquat; +template struct qua; +template struct qua; -template struct tquat; -template struct tquat; +template struct qua; +template struct qua; //tdualquat type explicit instantiation template struct tdualquat; diff --git a/glm/detail/qualifier.hpp b/glm/detail/qualifier.hpp index ce664348..8248cd0b 100644 --- a/glm/detail/qualifier.hpp +++ b/glm/detail/qualifier.hpp @@ -38,6 +38,7 @@ namespace glm template struct vec; template struct mat; + template struct qua; namespace detail { diff --git a/glm/detail/type_quat.hpp b/glm/detail/type_quat.hpp new file mode 100644 index 00000000..b08b3c3f --- /dev/null +++ b/glm/detail/type_quat.hpp @@ -0,0 +1,165 @@ +/// @ref gtc_quaternion +/// @file glm/gtc/quaternion.hpp +/// +/// @see core (dependence) +/// @see gtc_constants (dependence) +/// +/// @defgroup gtc_quaternion GLM_GTC_quaternion +/// @ingroup gtc +/// +/// Include to use the features of this extension. +/// +/// Defines a templated quaternion type and several quaternion operations. + +#pragma once + +// Dependency: +#include "../detail/type_mat3x3.hpp" +#include "../detail/type_mat4x4.hpp" +#include "../detail/type_vec3.hpp" +#include "../detail/type_vec4.hpp" +#include "../ext/vector_relational.hpp" +#include "../gtc/constants.hpp" +#include "../gtc/matrix_transform.hpp" + +namespace glm +{ + /// @addtogroup gtc_quaternion + /// @{ + + template + struct qua + { + // -- Implementation detail -- + + typedef qua type; + typedef T value_type; + + // -- Data -- + +# if GLM_LANG & GLM_LANG_CXXMS_FLAG + union + { + struct { T x, y, z, w;}; + + typename detail::storage<4, T, detail::is_aligned::value>::type data; + }; +# else + T x, y, z, w; +# endif + + // -- Component accesses -- + + typedef length_t length_type; + /// Return the count of components of a quaternion + GLM_FUNC_DECL static GLM_CONSTEXPR length_type length(){return 4;} + + GLM_FUNC_DECL GLM_CONSTEXPR T & operator[](length_type i); + GLM_FUNC_DECL GLM_CONSTEXPR T const& operator[](length_type i) const; + + // -- Implicit basic constructors -- + + GLM_FUNC_DECL GLM_CONSTEXPR qua() GLM_DEFAULT; + GLM_FUNC_DECL GLM_CONSTEXPR qua(qua const& q) GLM_DEFAULT; + template + GLM_FUNC_DECL GLM_CONSTEXPR qua(qua const& q); + + // -- Explicit basic constructors -- + + GLM_FUNC_DECL GLM_CONSTEXPR qua(T s, vec<3, T, Q> const& v); + GLM_FUNC_DECL GLM_CONSTEXPR qua(T w, T x, T y, T z); + + // -- Conversion constructors -- + + template + GLM_FUNC_DECL GLM_CONSTEXPR GLM_EXPLICIT qua(qua const& q); + + /// Explicit conversion operators +# if GLM_HAS_EXPLICIT_CONVERSION_OPERATORS + GLM_FUNC_DECL explicit operator mat<3, 3, T, Q>(); + GLM_FUNC_DECL explicit operator mat<4, 4, T, Q>(); +# endif + + /// Create a quaternion from two normalized axis + /// + /// @param u A first normalized axis + /// @param v A second normalized axis + /// @see gtc_quaternion + /// @see http://lolengine.net/blog/2013/09/18/beautiful-maths-quaternion-from-vectors + GLM_FUNC_DECL qua(vec<3, T, Q> const& u, vec<3, T, Q> const& v); + + /// Build a quaternion from euler angles (pitch, yaw, roll), in radians. + GLM_FUNC_DECL GLM_EXPLICIT qua(vec<3, T, Q> const& eulerAngles); + GLM_FUNC_DECL GLM_EXPLICIT qua(mat<3, 3, T, Q> const& q); + GLM_FUNC_DECL GLM_EXPLICIT qua(mat<4, 4, T, Q> const& q); + + // -- Unary arithmetic operators -- + + GLM_FUNC_DECL qua& operator=(qua const& q) GLM_DEFAULT; + + template + GLM_FUNC_DECL qua& operator=(qua const& q); + template + GLM_FUNC_DECL qua& operator+=(qua const& q); + template + GLM_FUNC_DECL qua& operator-=(qua const& q); + template + GLM_FUNC_DECL qua& operator*=(qua const& q); + template + GLM_FUNC_DECL qua& operator*=(U s); + template + GLM_FUNC_DECL qua& operator/=(U s); + }; + + // -- Unary bit operators -- + + template + GLM_FUNC_DECL qua operator+(qua const& q); + + template + GLM_FUNC_DECL qua operator-(qua const& q); + + // -- Binary operators -- + + template + GLM_FUNC_DECL qua operator+(qua const& q, qua const& p); + + template + GLM_FUNC_DECL qua operator-(qua const& q, qua const& p); + + template + GLM_FUNC_DECL qua operator*(qua const& q, qua const& p); + + template + GLM_FUNC_DECL vec<3, T, Q> operator*(qua const& q, vec<3, T, Q> const& v); + + template + GLM_FUNC_DECL vec<3, T, Q> operator*(vec<3, T, Q> const& v, qua const& q); + + template + GLM_FUNC_DECL vec<4, T, Q> operator*(qua const& q, vec<4, T, Q> const& v); + + template + GLM_FUNC_DECL vec<4, T, Q> operator*(vec<4, T, Q> const& v, qua const& q); + + template + GLM_FUNC_DECL qua operator*(qua const& q, T const& s); + + template + GLM_FUNC_DECL qua operator*(T const& s, qua const& q); + + template + GLM_FUNC_DECL qua operator/(qua const& q, T const& s); + + // -- Boolean operators -- + + template + GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(qua const& q1, qua const& q2); + + template + GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(qua const& q1, qua const& q2); + + /// @} +} //namespace glm + +#include "type_quat.inl" diff --git a/glm/detail/type_quat.inl b/glm/detail/type_quat.inl new file mode 100644 index 00000000..c58debe2 --- /dev/null +++ b/glm/detail/type_quat.inl @@ -0,0 +1,393 @@ +/// @ref gtc_quaternion + +#include "../trigonometric.hpp" +#include "../geometric.hpp" +#include "../exponential.hpp" +#include + +namespace glm{ +namespace detail +{ + template + struct genTypeTrait > + { + static const genTypeEnum GENTYPE = GENTYPE_QUAT; + }; + + template + struct compute_dot, T, Aligned> + { + static GLM_FUNC_QUALIFIER T call(qua const& a, qua const& b) + { + vec<4, T, Q> tmp(a.x * b.x, a.y * b.y, a.z * b.z, a.w * b.w); + return (tmp.x + tmp.y) + (tmp.z + tmp.w); + } + }; + + template + struct compute_quat_add + { + static qua call(qua const& q, qua const& p) + { + return qua(q.w + p.w, q.x + p.x, q.y + p.y, q.z + p.z); + } + }; + + template + struct compute_quat_sub + { + static qua call(qua const& q, qua const& p) + { + return qua(q.w - p.w, q.x - p.x, q.y - p.y, q.z - p.z); + } + }; + + template + struct compute_quat_mul_scalar + { + static qua call(qua const& q, T s) + { + return qua(q.w * s, q.x * s, q.y * s, q.z * s); + } + }; + + template + struct compute_quat_div_scalar + { + static qua call(qua const& q, T s) + { + return qua(q.w / s, q.x / s, q.y / s, q.z / s); + } + }; + + template + struct compute_quat_mul_vec4 + { + static vec<4, T, Q> call(qua const& q, vec<4, T, Q> const& v) + { + return vec<4, T, Q>(q * vec<3, T, Q>(v), v.w); + } + }; +}//namespace detail + + // -- Component accesses -- + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR T & qua::operator[](typename qua::length_type i) + { + assert(i >= 0 && i < this->length()); + return (&x)[i]; + } + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR T const& qua::operator[](typename qua::length_type i) const + { + assert(i >= 0 && i < this->length()); + return (&x)[i]; + } + + // -- Implicit basic constructors -- + +# if GLM_CONFIG_DEFAULTED_FUNCTIONS == GLM_DISABLE + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua::qua() +# if GLM_CONFIG_DEFAULTED_FUNCTIONS != GLM_DISABLE + : x(0), y(0), z(0), w(1) +# endif + {} + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua::qua(qua const& q) + : x(q.x), y(q.y), z(q.z), w(q.w) + {} +# endif + + template + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua::qua(qua const& q) + : x(q.x), y(q.y), z(q.z), w(q.w) + {} + + // -- Explicit basic constructors -- + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua::qua(T s, vec<3, T, Q> const& v) + : x(v.x), y(v.y), z(v.z), w(s) + {} + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua::qua(T _w, T _x, T _y, T _z) + : x(_x), y(_y), z(_z), w(_w) + {} + + // -- Conversion constructors -- + + template + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua::qua(qua const& q) + : x(static_cast(q.x)) + , y(static_cast(q.y)) + , z(static_cast(q.z)) + , w(static_cast(q.w)) + {} + + //template + //GLM_FUNC_QUALIFIER qua::qua + //( + // valType const& pitch, + // valType const& yaw, + // valType const& roll + //) + //{ + // vec<3, valType> eulerAngle(pitch * valType(0.5), yaw * valType(0.5), roll * valType(0.5)); + // vec<3, valType> c = glm::cos(eulerAngle * valType(0.5)); + // vec<3, valType> s = glm::sin(eulerAngle * valType(0.5)); + // + // this->w = c.x * c.y * c.z + s.x * s.y * s.z; + // this->x = s.x * c.y * c.z - c.x * s.y * s.z; + // this->y = c.x * s.y * c.z + s.x * c.y * s.z; + // this->z = c.x * c.y * s.z - s.x * s.y * c.z; + //} + + template + GLM_FUNC_QUALIFIER qua::qua(vec<3, T, Q> const& u, vec<3, T, Q> const& v) + { + T norm_u_norm_v = sqrt(dot(u, u) * dot(v, v)); + T real_part = norm_u_norm_v + dot(u, v); + vec<3, T, Q> t; + + if(real_part < static_cast(1.e-6f) * norm_u_norm_v) + { + // If u and v are exactly opposite, rotate 180 degrees + // around an arbitrary orthogonal axis. Axis normalisation + // can happen later, when we normalise the quaternion. + real_part = static_cast(0); + t = abs(u.x) > abs(u.z) ? vec<3, T, Q>(-u.y, u.x, static_cast(0)) : vec<3, T, Q>(static_cast(0), -u.z, u.y); + } + else + { + // Otherwise, build quaternion the standard way. + t = cross(u, v); + } + + *this = normalize(qua(real_part, t.x, t.y, t.z)); + } + + template + GLM_FUNC_QUALIFIER qua::qua(vec<3, T, Q> const& eulerAngle) + { + vec<3, T, Q> c = glm::cos(eulerAngle * T(0.5)); + vec<3, T, Q> s = glm::sin(eulerAngle * T(0.5)); + + this->w = c.x * c.y * c.z + s.x * s.y * s.z; + this->x = s.x * c.y * c.z - c.x * s.y * s.z; + this->y = c.x * s.y * c.z + s.x * c.y * s.z; + this->z = c.x * c.y * s.z - s.x * s.y * c.z; + } + + template + GLM_FUNC_QUALIFIER qua::qua(mat<3, 3, T, Q> const& m) + { + *this = quat_cast(m); + } + + template + GLM_FUNC_QUALIFIER qua::qua(mat<4, 4, T, Q> const& m) + { + *this = quat_cast(m); + } + +# if GLM_HAS_EXPLICIT_CONVERSION_OPERATORS + template + GLM_FUNC_QUALIFIER qua::operator mat<3, 3, T, Q>() + { + return mat3_cast(*this); + } + + template + GLM_FUNC_QUALIFIER qua::operator mat<4, 4, T, Q>() + { + return mat4_cast(*this); + } +# endif//GLM_HAS_EXPLICIT_CONVERSION_OPERATORS + + template + GLM_FUNC_QUALIFIER qua conjugate(qua const& q) + { + return qua(q.w, -q.x, -q.y, -q.z); + } + + template + GLM_FUNC_QUALIFIER qua inverse(qua const& q) + { + return conjugate(q) / dot(q, q); + } + + // -- Unary arithmetic operators -- + +# if GLM_CONFIG_DEFAULTED_FUNCTIONS == GLM_DISABLE + template + GLM_FUNC_QUALIFIER qua & qua::operator=(qua const& q) + { + this->w = q.w; + this->x = q.x; + this->y = q.y; + this->z = q.z; + return *this; + } +# endif + + template + template + GLM_FUNC_QUALIFIER qua & qua::operator=(qua const& q) + { + this->w = static_cast(q.w); + this->x = static_cast(q.x); + this->y = static_cast(q.y); + this->z = static_cast(q.z); + return *this; + } + + template + template + GLM_FUNC_QUALIFIER qua & qua::operator+=(qua const& q) + { + return (*this = detail::compute_quat_add::value>::call(*this, qua(q))); + } + + template + template + GLM_FUNC_QUALIFIER qua & qua::operator-=(qua const& q) + { + return (*this = detail::compute_quat_sub::value>::call(*this, qua(q))); + } + + template + template + GLM_FUNC_QUALIFIER qua & qua::operator*=(qua const& r) + { + qua const p(*this); + qua const q(r); + + this->w = p.w * q.w - p.x * q.x - p.y * q.y - p.z * q.z; + this->x = p.w * q.x + p.x * q.w + p.y * q.z - p.z * q.y; + this->y = p.w * q.y + p.y * q.w + p.z * q.x - p.x * q.z; + this->z = p.w * q.z + p.z * q.w + p.x * q.y - p.y * q.x; + return *this; + } + + template + template + GLM_FUNC_QUALIFIER qua & qua::operator*=(U s) + { + return (*this = detail::compute_quat_mul_scalar::value>::call(*this, static_cast(s))); + } + + template + template + GLM_FUNC_QUALIFIER qua & qua::operator/=(U s) + { + return (*this = detail::compute_quat_div_scalar::value>::call(*this, static_cast(s))); + } + + // -- Unary bit operators -- + + template + GLM_FUNC_QUALIFIER qua operator+(qua const& q) + { + return q; + } + + template + GLM_FUNC_QUALIFIER qua operator-(qua const& q) + { + return qua(-q.w, -q.x, -q.y, -q.z); + } + + // -- Binary operators -- + + template + GLM_FUNC_QUALIFIER qua operator+(qua const& q, qua const& p) + { + return qua(q) += p; + } + + template + GLM_FUNC_QUALIFIER qua operator-(qua const& q, qua const& p) + { + return qua(q) -= p; + } + + template + GLM_FUNC_QUALIFIER qua operator*(qua const& q, qua const& p) + { + return qua(q) *= p; + } + + template + GLM_FUNC_QUALIFIER vec<3, T, Q> operator*(qua const& q, vec<3, T, Q> const& v) + { + vec<3, T, Q> const QuatVector(q.x, q.y, q.z); + vec<3, T, Q> const uv(glm::cross(QuatVector, v)); + vec<3, T, Q> const uuv(glm::cross(QuatVector, uv)); + + return v + ((uv * q.w) + uuv) * static_cast(2); + } + + template + GLM_FUNC_QUALIFIER vec<3, T, Q> operator*(vec<3, T, Q> const& v, qua const& q) + { + return glm::inverse(q) * v; + } + + template + GLM_FUNC_QUALIFIER vec<4, T, Q> operator*(qua const& q, vec<4, T, Q> const& v) + { + return detail::compute_quat_mul_vec4::value>::call(q, v); + } + + template + GLM_FUNC_QUALIFIER vec<4, T, Q> operator*(vec<4, T, Q> const& v, qua const& q) + { + return glm::inverse(q) * v; + } + + template + GLM_FUNC_QUALIFIER qua operator*(qua const& q, T const& s) + { + return qua( + q.w * s, q.x * s, q.y * s, q.z * s); + } + + template + GLM_FUNC_QUALIFIER qua operator*(T const& s, qua const& q) + { + return q * s; + } + + template + GLM_FUNC_QUALIFIER qua operator/(qua const& q, T const& s) + { + return qua( + q.w / s, q.x / s, q.y / s, q.z / s); + } + + // -- Boolean operators -- + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR bool operator==(qua const& q1, qua const& q2) + { + return q1.x == q2.x && q1.y == q2.y && q1.z == q2.z && q1.w == q2.w; + } + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR bool operator!=(qua const& q1, qua const& q2) + { + return q1.x != q2.x || q1.y != q2.y || q1.z != q2.z || q1.w != q2.w; + } +}//namespace glm + +#if GLM_CONFIG_SIMD == GLM_ENABLE +# include "quaternion_simd.inl" +#endif + diff --git a/glm/detail/type_quat_simd.inl b/glm/detail/type_quat_simd.inl new file mode 100644 index 00000000..84a190fb --- /dev/null +++ b/glm/detail/type_quat_simd.inl @@ -0,0 +1,197 @@ +/// @ref core + +#if GLM_ARCH & GLM_ARCH_SSE2_BIT + +namespace glm{ +namespace detail +{ +/* + template + struct compute_quat_mul + { + static qua call(qua const& q1, qua const& q2) + { + // SSE2 STATS: 11 shuffle, 8 mul, 8 add + // SSE4 STATS: 3 shuffle, 4 mul, 4 dpps + + __m128 const mul0 = _mm_mul_ps(q1.Data, _mm_shuffle_ps(q2.Data, q2.Data, _MM_SHUFFLE(0, 1, 2, 3))); + __m128 const mul1 = _mm_mul_ps(q1.Data, _mm_shuffle_ps(q2.Data, q2.Data, _MM_SHUFFLE(1, 0, 3, 2))); + __m128 const mul2 = _mm_mul_ps(q1.Data, _mm_shuffle_ps(q2.Data, q2.Data, _MM_SHUFFLE(2, 3, 0, 1))); + __m128 const mul3 = _mm_mul_ps(q1.Data, q2.Data); + +# if GLM_ARCH & GLM_ARCH_SSE41_BIT + __m128 const add0 = _mm_dp_ps(mul0, _mm_set_ps(1.0f, -1.0f, 1.0f, 1.0f), 0xff); + __m128 const add1 = _mm_dp_ps(mul1, _mm_set_ps(1.0f, 1.0f, 1.0f, -1.0f), 0xff); + __m128 const add2 = _mm_dp_ps(mul2, _mm_set_ps(1.0f, 1.0f, -1.0f, 1.0f), 0xff); + __m128 const add3 = _mm_dp_ps(mul3, _mm_set_ps(1.0f, -1.0f, -1.0f, -1.0f), 0xff); +# else + __m128 const mul4 = _mm_mul_ps(mul0, _mm_set_ps(1.0f, -1.0f, 1.0f, 1.0f)); + __m128 const add0 = _mm_add_ps(mul0, _mm_movehl_ps(mul4, mul4)); + __m128 const add4 = _mm_add_ss(add0, _mm_shuffle_ps(add0, add0, 1)); + + __m128 const mul5 = _mm_mul_ps(mul1, _mm_set_ps(1.0f, 1.0f, 1.0f, -1.0f)); + __m128 const add1 = _mm_add_ps(mul1, _mm_movehl_ps(mul5, mul5)); + __m128 const add5 = _mm_add_ss(add1, _mm_shuffle_ps(add1, add1, 1)); + + __m128 const mul6 = _mm_mul_ps(mul2, _mm_set_ps(1.0f, 1.0f, -1.0f, 1.0f)); + __m128 const add2 = _mm_add_ps(mul6, _mm_movehl_ps(mul6, mul6)); + __m128 const add6 = _mm_add_ss(add2, _mm_shuffle_ps(add2, add2, 1)); + + __m128 const mul7 = _mm_mul_ps(mul3, _mm_set_ps(1.0f, -1.0f, -1.0f, -1.0f)); + __m128 const add3 = _mm_add_ps(mul3, _mm_movehl_ps(mul7, mul7)); + __m128 const add7 = _mm_add_ss(add3, _mm_shuffle_ps(add3, add3, 1)); + #endif + + // This SIMD code is a politically correct way of doing this, but in every test I've tried it has been slower than + // the final code below. I'll keep this here for reference - maybe somebody else can do something better... + // + //__m128 xxyy = _mm_shuffle_ps(add4, add5, _MM_SHUFFLE(0, 0, 0, 0)); + //__m128 zzww = _mm_shuffle_ps(add6, add7, _MM_SHUFFLE(0, 0, 0, 0)); + // + //return _mm_shuffle_ps(xxyy, zzww, _MM_SHUFFLE(2, 0, 2, 0)); + + qua Result; + _mm_store_ss(&Result.x, add4); + _mm_store_ss(&Result.y, add5); + _mm_store_ss(&Result.z, add6); + _mm_store_ss(&Result.w, add7); + return Result; + } + }; +*/ + + template + struct compute_dot, float, true> + { + static GLM_FUNC_QUALIFIER float call(qua const& x, qua const& y) + { + return _mm_cvtss_f32(glm_vec1_dot(x.data, y.data)); + } + }; + + template + struct compute_quat_add + { + static qua call(qua const& q, qua const& p) + { + qua Result; + Result.data = _mm_add_ps(q.data, p.data); + return Result; + } + }; + +# if GLM_ARCH & GLM_ARCH_AVX_BIT + template + struct compute_quat_add + { + static qua call(qua const& a, qua const& b) + { + qua Result; + Result.data = _mm256_add_pd(a.data, b.data); + return Result; + } + }; +# endif + + template + struct compute_quat_sub + { + static qua call(qua const& q, qua const& p) + { + vec<4, float, Q> Result; + Result.data = _mm_sub_ps(q.data, p.data); + return Result; + } + }; + +# if GLM_ARCH & GLM_ARCH_AVX_BIT + template + struct compute_quat_sub + { + static qua call(qua const& a, qua const& b) + { + qua Result; + Result.data = _mm256_sub_pd(a.data, b.data); + return Result; + } + }; +# endif + + template + struct compute_quat_mul_scalar + { + static qua call(qua const& q, float s) + { + vec<4, float, Q> Result; + Result.data = _mm_mul_ps(q.data, _mm_set_ps1(s)); + return Result; + } + }; + +# if GLM_ARCH & GLM_ARCH_AVX_BIT + template + struct compute_quat_mul_scalar + { + static qua call(qua const& q, double s) + { + qua Result; + Result.data = _mm256_mul_pd(q.data, _mm_set_ps1(s)); + return Result; + } + }; +# endif + + template + struct compute_quat_div_scalar + { + static qua call(qua const& q, float s) + { + vec<4, float, Q> Result; + Result.data = _mm_div_ps(q.data, _mm_set_ps1(s)); + return Result; + } + }; + +# if GLM_ARCH & GLM_ARCH_AVX_BIT + template + struct compute_quat_div_scalar + { + static qua call(qua const& q, double s) + { + qua Result; + Result.data = _mm256_div_pd(q.data, _mm_set_ps1(s)); + return Result; + } + }; +# endif + + template + struct compute_quat_mul_vec4 + { + static vec<4, float, Q> call(qua const& q, vec<4, float, Q> const& v) + { + __m128 const q_wwww = _mm_shuffle_ps(q.data, q.data, _MM_SHUFFLE(3, 3, 3, 3)); + __m128 const q_swp0 = _mm_shuffle_ps(q.data, q.data, _MM_SHUFFLE(3, 0, 2, 1)); + __m128 const q_swp1 = _mm_shuffle_ps(q.data, q.data, _MM_SHUFFLE(3, 1, 0, 2)); + __m128 const v_swp0 = _mm_shuffle_ps(v.data, v.data, _MM_SHUFFLE(3, 0, 2, 1)); + __m128 const v_swp1 = _mm_shuffle_ps(v.data, v.data, _MM_SHUFFLE(3, 1, 0, 2)); + + __m128 uv = _mm_sub_ps(_mm_mul_ps(q_swp0, v_swp1), _mm_mul_ps(q_swp1, v_swp0)); + __m128 uv_swp0 = _mm_shuffle_ps(uv, uv, _MM_SHUFFLE(3, 0, 2, 1)); + __m128 uv_swp1 = _mm_shuffle_ps(uv, uv, _MM_SHUFFLE(3, 1, 0, 2)); + __m128 uuv = _mm_sub_ps(_mm_mul_ps(q_swp0, uv_swp1), _mm_mul_ps(q_swp1, uv_swp0)); + + __m128 const two = _mm_set1_ps(2.0f); + uv = _mm_mul_ps(uv, _mm_mul_ps(q_wwww, two)); + uuv = _mm_mul_ps(uuv, two); + + vec<4, float, Q> Result; + Result.data = _mm_add_ps(v.Data, _mm_add_ps(uv, uuv)); + return Result; + } + }; +}//namespace detail +}//namespace glm + +#endif//GLM_ARCH & GLM_ARCH_SSE2_BIT + diff --git a/glm/ext/quaternion_double.hpp b/glm/ext/quaternion_double.hpp new file mode 100644 index 00000000..a03f9b60 --- /dev/null +++ b/glm/ext/quaternion_double.hpp @@ -0,0 +1,37 @@ +/// @ref ext_quaternion_double +/// @file glm/ext/quaternion_double.hpp +/// +/// @see core (dependence) +/// +/// @defgroup ext_quaternion_double GLM_EXT_quaternion_double +/// @ingroup ext +/// +/// Include to use the features of this extension. +/// +/// Defines a templated quaternion type and several quaternion operations. + +#pragma once + +// Dependency: +#include "../detail/type_quat.hpp" + +#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED) +# pragma message("GLM: GLM_EXT_quaternion_double extension included") +#endif + +namespace glm +{ + /// @addtogroup ext_quaternion_double + /// @{ + +#if GLM_CONFIG_PRECISION_FLOAT == GLM_HIGHP + typedef qua dquat; +#elif GLM_CONFIG_PRECISION_FLOAT == GLM_MEDIUMP + typedef qua dquat; +#else + typedef qua dquat; +#endif + + /// @} +} //namespace glm + diff --git a/glm/ext/quaternion_double_precision.hpp b/glm/ext/quaternion_double_precision.hpp new file mode 100644 index 00000000..ce9474d7 --- /dev/null +++ b/glm/ext/quaternion_double_precision.hpp @@ -0,0 +1,44 @@ +/// @ref ext_quaternion_double_precision +/// @file glm/ext/quaternion_double_precision.hpp +/// +/// @see core (dependence) +/// +/// @defgroup ext_quaternion_double_precision GLM_EXT_quaternion_double_precision +/// @ingroup ext +/// +/// Include to use the features of this extension. +/// +/// Defines a templated quaternion type and several quaternion operations. + +#pragma once + +// Dependency: +#include "../detail/type_quat.hpp" + +#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED) +# pragma message("GLM: GLM_EXT_quaternion_double_precision extension included") +#endif + +namespace glm +{ + /// @addtogroup ext_quaternion_double_precision + /// @{ + + /// Quaternion of double-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see ext_quaternion_double_precision + typedef qua lowp_dquat; + + /// Quaternion of medium double-qualifier floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see ext_quaternion_double_precision + typedef qua mediump_dquat; + + /// Quaternion of high double-qualifier floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see ext_quaternion_double_precision + typedef qua highp_dquat; + + /// @} +} //namespace glm + diff --git a/glm/ext/quaternion_float.hpp b/glm/ext/quaternion_float.hpp new file mode 100644 index 00000000..900a3149 --- /dev/null +++ b/glm/ext/quaternion_float.hpp @@ -0,0 +1,37 @@ +/// @ref quaternion_float +/// @file glm/ext/quaternion_float.hpp +/// +/// @see core (dependence) +/// +/// @defgroup gtc_quaternion GLM_EXT_quaternion_float +/// @ingroup gtc +/// +/// Include to use the features of this extension. +/// +/// Defines a templated quaternion type and several quaternion operations. + +#pragma once + +// Dependency: +#include "../detail/type_quat.hpp" + +#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED) +# pragma message("GLM: GLM_EXT_quaternion_float extension included") +#endif + +namespace glm +{ + /// @addtogroup ext_quaternion_float + /// @{ + +#if GLM_CONFIG_PRECISION_FLOAT == GLM_HIGHP + typedef qua quat; +#elif GLM_CONFIG_PRECISION_FLOAT == GLM_MEDIUMP + typedef qua quat; +#else + typedef qua quat; +#endif + + /// @} +} //namespace glm + diff --git a/glm/ext/quaternion_float_precision.hpp b/glm/ext/quaternion_float_precision.hpp new file mode 100644 index 00000000..d7783c5c --- /dev/null +++ b/glm/ext/quaternion_float_precision.hpp @@ -0,0 +1,44 @@ +/// @ref ext_quaternion_float +/// @file glm/ext/quaternion_float.hpp +/// +/// @see core (dependence) +/// +/// @defgroup ext_quaternion_float GLM_EXT_quaternion_float +/// @ingroup ext +/// +/// Include to use the features of this extension. +/// +/// Defines a templated quaternion type and several quaternion operations. + +#pragma once + +// Dependency: +#include "../detail/type_quat.hpp" + +#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED) +# pragma message("GLM: GLM_EXT_quaternion_float extension included") +#endif + +namespace glm +{ + /// @addtogroup ext_quaternion_float + /// @{ + + /// Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see ext_quaternion_float + typedef qua lowp_quat; + + /// Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see ext_quaternion_float + typedef qua mediump_quat; + + /// Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see ext_quaternion_float + typedef qua highp_quat; + + /// @} +} //namespace glm + diff --git a/glm/gtc/epsilon.inl b/glm/gtc/epsilon.inl index f1d8df64..508b9f89 100644 --- a/glm/gtc/epsilon.inl +++ b/glm/gtc/epsilon.inl @@ -1,7 +1,6 @@ /// @ref gtc_epsilon // Dependency: -#include "quaternion.hpp" #include "../vector_relational.hpp" #include "../common.hpp" @@ -66,14 +65,14 @@ namespace glm } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> epsilonEqual(tquat const& x, tquat const& y, T const& epsilon) + GLM_FUNC_QUALIFIER vec<4, bool, Q> epsilonEqual(qua const& x, qua const& y, T const& epsilon) { vec<4, T, Q> v(x.x - y.x, x.y - y.y, x.z - y.z, x.w - y.w); return lessThan(abs(v), vec<4, T, Q>(epsilon)); } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> epsilonNotEqual(tquat const& x, tquat const& y, T const& epsilon) + GLM_FUNC_QUALIFIER vec<4, bool, Q> epsilonNotEqual(qua const& x, qua const& y, T const& epsilon) { vec<4, T, Q> v(x.x - y.x, x.y - y.y, x.z - y.z, x.w - y.w); return greaterThanEqual(abs(v), vec<4, T, Q>(epsilon)); diff --git a/glm/gtc/quaternion.hpp b/glm/gtc/quaternion.hpp index e3d6940f..e8a398c8 100644 --- a/glm/gtc/quaternion.hpp +++ b/glm/gtc/quaternion.hpp @@ -14,13 +14,17 @@ #pragma once // Dependency: +#include "../gtc/constants.hpp" +#include "../gtc/matrix_transform.hpp" +#include "../ext/vector_relational.hpp" +#include "../ext/quaternion_float.hpp" +#include "../ext/quaternion_float_precision.hpp" +#include "../ext/quaternion_double.hpp" +#include "../ext/quaternion_double_precision.hpp" #include "../detail/type_mat3x3.hpp" #include "../detail/type_mat4x4.hpp" #include "../detail/type_vec3.hpp" #include "../detail/type_vec4.hpp" -#include "../ext/vector_relational.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") @@ -31,137 +35,13 @@ namespace glm /// @addtogroup gtc_quaternion /// @{ - template - struct tquat - { - // -- Implementation detail -- - - typedef tquat type; - typedef T value_type; - - // -- Data -- - -# if GLM_LANG & GLM_LANG_CXXMS_FLAG - union - { - struct { T x, y, z, w;}; - - typename detail::storage<4, T, detail::is_aligned::value>::type data; - }; -# else - T x, y, z, w; -# endif - - // -- Component accesses -- - - typedef length_t length_type; - /// Return the count of components of a quaternion - GLM_FUNC_DECL static GLM_CONSTEXPR length_type length(){return 4;} - - GLM_FUNC_DECL GLM_CONSTEXPR T & operator[](length_type i); - GLM_FUNC_DECL GLM_CONSTEXPR T const& operator[](length_type i) const; - - // -- Implicit basic constructors -- - - GLM_FUNC_DECL GLM_CONSTEXPR tquat() GLM_DEFAULT; - GLM_FUNC_DECL GLM_CONSTEXPR tquat(tquat const& q) GLM_DEFAULT; - template - GLM_FUNC_DECL GLM_CONSTEXPR tquat(tquat const& q); - - // -- Explicit basic constructors -- - - GLM_FUNC_DECL GLM_CONSTEXPR tquat(T s, vec<3, T, Q> const& v); - GLM_FUNC_DECL GLM_CONSTEXPR tquat(T w, T x, T y, T z); - - // -- Conversion constructors -- - - template - GLM_FUNC_DECL GLM_CONSTEXPR GLM_EXPLICIT tquat(tquat const& q); - - /// Explicit conversion operators -# if GLM_HAS_EXPLICIT_CONVERSION_OPERATORS - GLM_FUNC_DECL explicit operator mat<3, 3, T, Q>(); - GLM_FUNC_DECL explicit operator mat<4, 4, T, Q>(); -# endif - - /// Create a quaternion from two normalized axis - /// - /// @param u A first normalized axis - /// @param v A second normalized axis - /// @see gtc_quaternion - /// @see http://lolengine.net/blog/2013/09/18/beautiful-maths-quaternion-from-vectors - GLM_FUNC_DECL tquat(vec<3, T, Q> const& u, vec<3, T, Q> const& v); - - /// Build a quaternion from euler angles (pitch, yaw, roll), in radians. - GLM_FUNC_DECL GLM_EXPLICIT tquat(vec<3, T, Q> const& eulerAngles); - GLM_FUNC_DECL GLM_EXPLICIT tquat(mat<3, 3, T, Q> const& q); - GLM_FUNC_DECL GLM_EXPLICIT tquat(mat<4, 4, T, Q> const& q); - - // -- Unary arithmetic operators -- - - GLM_FUNC_DECL tquat & operator=(tquat const& q) GLM_DEFAULT; - - template - GLM_FUNC_DECL tquat & operator=(tquat const& q); - template - GLM_FUNC_DECL tquat & operator+=(tquat const& q); - template - GLM_FUNC_DECL tquat & operator-=(tquat const& q); - template - GLM_FUNC_DECL tquat & operator*=(tquat const& q); - template - GLM_FUNC_DECL tquat & operator*=(U s); - template - GLM_FUNC_DECL tquat & operator/=(U s); - }; - - // -- Unary bit operators -- - - template - GLM_FUNC_DECL tquat operator+(tquat const& q); - - template - GLM_FUNC_DECL tquat operator-(tquat const& q); - - // -- Binary operators -- - - template - GLM_FUNC_DECL tquat operator+(tquat const& q, tquat const& p); - - template - GLM_FUNC_DECL tquat operator-(tquat const& q, tquat const& p); - - template - GLM_FUNC_DECL tquat operator*(tquat const& q, tquat const& p); - - template - GLM_FUNC_DECL vec<3, T, Q> operator*(tquat const& q, vec<3, T, Q> const& v); - - template - GLM_FUNC_DECL vec<3, T, Q> operator*(vec<3, T, Q> const& v, tquat const& q); - - template - GLM_FUNC_DECL vec<4, T, Q> operator*(tquat const& q, vec<4, T, Q> const& v); - - template - GLM_FUNC_DECL vec<4, T, Q> operator*(vec<4, T, Q> const& v, tquat const& q); - - template - GLM_FUNC_DECL tquat operator*(tquat const& q, T const& s); - - template - GLM_FUNC_DECL tquat operator*(T const& s, tquat const& q); - - template - GLM_FUNC_DECL tquat operator/(tquat const& q, T const& s); - // -- Boolean operators -- template - GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(tquat const& q1, tquat const& q2); + GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(qua const& q1, qua const& q2); template - GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(tquat const& q1, tquat const& q2); + GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(qua const& q1, qua const& q2); /// Builds an identity quaternion. template @@ -173,7 +53,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL T length(tquat const& q); + GLM_FUNC_DECL T length(qua const& q); /// Returns the normalized quaternion. /// @@ -181,7 +61,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL tquat normalize(tquat const& q); + GLM_FUNC_DECL qua normalize(qua const& q); /// Returns dot product of q1 and q2, i.e., q1[0] * q2[0] + q1[1] * q2[1] + ... /// @@ -189,7 +69,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL T dot(tquat const& x, tquat const& y); + GLM_FUNC_DECL T dot(qua const& x, qua const& y); /// Spherical linear interpolation of two quaternions. /// The interpolation is oriented and the rotation is performed at constant speed. @@ -200,10 +80,10 @@ namespace glm /// @param a Interpolation factor. The interpolation is defined beyond the range [0, 1]. /// @tparam T Floating-point scalar types. /// - /// @see - slerp(tquat const& x, tquat const& y, T const& a) + /// @see - slerp(qua const& x, qua const& y, T const& a) /// @see gtc_quaternion template - GLM_FUNC_DECL tquat mix(tquat const& x, tquat const& y, T a); + GLM_FUNC_DECL qua mix(qua const& x, qua const& y, T a); /// Linear interpolation of two quaternions. /// The interpolation is oriented. @@ -215,7 +95,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL tquat lerp(tquat const& x, tquat const& y, T a); + GLM_FUNC_DECL qua lerp(qua const& x, qua const& y, T a); /// Spherical linear interpolation of two quaternions. /// The interpolation always take the short path and the rotation is performed at constant speed. @@ -227,7 +107,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL tquat slerp(tquat const& x, tquat const& y, T a); + GLM_FUNC_DECL qua slerp(qua const& x, qua const& y, T a); /// Returns the q conjugate. /// @@ -235,7 +115,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL tquat conjugate(tquat const& q); + GLM_FUNC_DECL qua conjugate(qua const& q); /// Returns the q inverse. /// @@ -243,7 +123,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL tquat inverse(tquat const& q); + GLM_FUNC_DECL qua inverse(qua const& q); /// Rotates a quaternion from a vector of 3 components axis and an angle. /// @@ -254,7 +134,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL tquat rotate(tquat const& q, T const& angle, vec<3, T, Q> const& axis); + GLM_FUNC_DECL qua rotate(qua const& q, T const& angle, vec<3, T, Q> const& axis); /// Returns euler angles, pitch as x, yaw as y, roll as z. /// The result is expressed in radians. @@ -263,7 +143,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<3, T, Q> eulerAngles(tquat const& x); + GLM_FUNC_DECL vec<3, T, Q> eulerAngles(qua const& x); /// Returns roll value of euler angles expressed in radians. /// @@ -271,7 +151,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL T roll(tquat const& x); + GLM_FUNC_DECL T roll(qua const& x); /// Returns pitch value of euler angles expressed in radians. /// @@ -279,7 +159,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL T pitch(tquat const& x); + GLM_FUNC_DECL T pitch(qua const& x); /// Returns yaw value of euler angles expressed in radians. /// @@ -287,7 +167,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL T yaw(tquat const& x); + GLM_FUNC_DECL T yaw(qua const& x); /// Converts a quaternion to a 3 * 3 matrix. /// @@ -295,7 +175,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL mat<3, 3, T, Q> mat3_cast(tquat const& x); + GLM_FUNC_DECL mat<3, 3, T, Q> mat3_cast(qua const& x); /// Converts a quaternion to a 4 * 4 matrix. /// @@ -303,7 +183,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL mat<4, 4, T, Q> mat4_cast(tquat const& x); + GLM_FUNC_DECL mat<4, 4, T, Q> mat4_cast(qua const& x); /// Converts a pure rotation 3 * 3 matrix to a quaternion. /// @@ -311,7 +191,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL tquat quat_cast(mat<3, 3, T, Q> const& x); + GLM_FUNC_DECL qua quat_cast(mat<3, 3, T, Q> const& x); /// Converts a pure rotation 4 * 4 matrix to a quaternion. /// @@ -319,7 +199,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL tquat quat_cast(mat<4, 4, T, Q> const& x); + GLM_FUNC_DECL qua quat_cast(mat<4, 4, T, Q> const& x); /// Returns the quaternion rotation angle. /// @@ -327,7 +207,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL T angle(tquat const& x); + GLM_FUNC_DECL T angle(qua const& x); /// Returns the q rotation axis. /// @@ -335,7 +215,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<3, T, Q> axis(tquat const& x); + GLM_FUNC_DECL vec<3, T, Q> axis(qua const& x); /// Build a quaternion from an angle and a normalized axis. /// @@ -345,7 +225,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL tquat angleAxis(T const& angle, vec<3, T, Q> const& axis); + GLM_FUNC_DECL qua angleAxis(T const& angle, vec<3, T, Q> const& axis); /// Returns the component-wise comparison result of x < y. /// @@ -353,7 +233,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<4, bool, Q> lessThan(tquat const& x, tquat const& y); + GLM_FUNC_DECL vec<4, bool, Q> lessThan(qua const& x, qua const& y); /// Returns the component-wise comparison of result x <= y. /// @@ -361,7 +241,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<4, bool, Q> lessThanEqual(tquat const& x, tquat const& y); + GLM_FUNC_DECL vec<4, bool, Q> lessThanEqual(qua const& x, qua const& y); /// Returns the component-wise comparison of result x > y. /// @@ -369,7 +249,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<4, bool, Q> greaterThan(tquat const& x, tquat const& y); + GLM_FUNC_DECL vec<4, bool, Q> greaterThan(qua const& x, qua const& y); /// Returns the component-wise comparison of result x >= y. /// @@ -377,7 +257,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<4, bool, Q> greaterThanEqual(tquat const& x, tquat const& y); + GLM_FUNC_DECL vec<4, bool, Q> greaterThanEqual(qua const& x, qua const& y); /// Returns the component-wise comparison of result x == y. /// @@ -385,7 +265,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<4, bool, Q> equal(tquat const& x, tquat const& y); + GLM_FUNC_DECL vec<4, bool, Q> equal(qua const& x, qua const& y); /// Returns the component-wise comparison of |x - y| < epsilon. /// @@ -393,7 +273,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<4, bool, Q> equal(tquat const& x, tquat const& y, T epsilon); + GLM_FUNC_DECL vec<4, bool, Q> equal(qua const& x, qua const& y, T epsilon); /// Returns the component-wise comparison of result x != y. /// @@ -401,7 +281,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<4, bool, Q> notEqual(tquat const& x, tquat const& y); + GLM_FUNC_DECL vec<4, bool, Q> notEqual(qua const& x, qua const& y); /// Returns the component-wise comparison of |x - y| >= epsilon. /// @@ -409,7 +289,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<4, bool, Q> notEqual(tquat const& x, tquat const& y, T epsilon); + GLM_FUNC_DECL vec<4, bool, Q> notEqual(qua const& x, qua const& y, T epsilon); /// Returns true if x holds a NaN (not a number) @@ -424,7 +304,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<4, bool, Q> isnan(tquat const& x); + GLM_FUNC_DECL vec<4, bool, Q> isnan(qua const& x); /// Returns true if x holds a positive infinity or negative /// infinity representation in the underlying implementation's @@ -436,81 +316,7 @@ namespace glm /// /// @see gtc_quaternion template - GLM_FUNC_DECL vec<4, bool, Q> isinf(tquat const& x); - - /// Quaternion of low single-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef tquat lowp_quat; - - /// Quaternion of medium single-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef tquat mediump_quat; - - /// Quaternion of high single-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef tquat highp_quat; - -#if(defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT)) - typedef highp_quat quat; -#elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT)) - typedef mediump_quat quat; -#elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && defined(GLM_PRECISION_LOWP_FLOAT)) - typedef lowp_quat quat; -#elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT)) - /// Quaternion of default single-qualifier floating-point numbers. - typedef highp_quat quat; -#endif - - /// Quaternion of low single-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef lowp_quat lowp_fquat; - - /// Quaternion of medium single-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef mediump_quat mediump_fquat; - - /// Quaternion of high single-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef highp_quat highp_fquat; - - /// Quaternion of default single-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef quat fquat; - - /// Quaternion of low double-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef tquat lowp_dquat; - - /// Quaternion of medium double-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef tquat mediump_dquat; - - /// Quaternion of high double-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef tquat highp_dquat; - -#if(defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE)) - typedef highp_dquat dquat; -#elif(!defined(GLM_PRECISION_HIGHP_DOUBLE) && defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE)) - typedef mediump_dquat dquat; -#elif(!defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && defined(GLM_PRECISION_LOWP_DOUBLE)) - typedef lowp_dquat dquat; -#elif(!defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE)) - /// Quaternion of default double-qualifier floating-point numbers. - /// - /// @see gtc_quaternion - typedef highp_dquat dquat; -#endif + GLM_FUNC_DECL vec<4, bool, Q> isinf(qua const& x); /// @} } //namespace glm diff --git a/glm/gtc/quaternion.inl b/glm/gtc/quaternion.inl index 8a6be67e..cdc27db4 100644 --- a/glm/gtc/quaternion.inl +++ b/glm/gtc/quaternion.inl @@ -6,416 +6,37 @@ #include "epsilon.hpp" #include -namespace glm{ -namespace detail +namespace glm { - template - struct genTypeTrait > - { - static const genTypeEnum GENTYPE = GENTYPE_QUAT; - }; - - template - struct compute_dot, T, Aligned> - { - static GLM_FUNC_QUALIFIER T call(tquat const& a, tquat const& b) - { - vec<4, T, Q> tmp(a.x * b.x, a.y * b.y, a.z * b.z, a.w * b.w); - return (tmp.x + tmp.y) + (tmp.z + tmp.w); - } - }; - - template - struct compute_quat_add - { - static tquat call(tquat const& q, tquat const& p) - { - return tquat(q.w + p.w, q.x + p.x, q.y + p.y, q.z + p.z); - } - }; - - template - struct compute_quat_sub - { - static tquat call(tquat const& q, tquat const& p) - { - return tquat(q.w - p.w, q.x - p.x, q.y - p.y, q.z - p.z); - } - }; - - template - struct compute_quat_mul_scalar - { - static tquat call(tquat const& q, T s) - { - return tquat(q.w * s, q.x * s, q.y * s, q.z * s); - } - }; - - template - struct compute_quat_div_scalar - { - static tquat call(tquat const& q, T s) - { - return tquat(q.w / s, q.x / s, q.y / s, q.z / s); - } - }; - - template - struct compute_quat_mul_vec4 - { - static vec<4, T, Q> call(tquat const& q, vec<4, T, Q> const& v) - { - return vec<4, T, Q>(q * vec<3, T, Q>(v), v.w); - } - }; -}//namespace detail - - // -- Component accesses -- - - template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR T & tquat::operator[](typename tquat::length_type i) - { - assert(i >= 0 && i < this->length()); - return (&x)[i]; - } - - template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR T const& tquat::operator[](typename tquat::length_type i) const - { - assert(i >= 0 && i < this->length()); - return (&x)[i]; - } - - // -- Implicit basic constructors -- - -# if GLM_CONFIG_DEFAULTED_FUNCTIONS == GLM_DISABLE - template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat::tquat() -# if GLM_CONFIG_DEFAULTED_FUNCTIONS != GLM_DISABLE - : x(0), y(0), z(0), w(1) -# endif - {} - - template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat::tquat(tquat const& q) - : x(q.x), y(q.y), z(q.z), w(q.w) - {} -# endif - - template - template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat::tquat(tquat const& q) - : x(q.x), y(q.y), z(q.z), w(q.w) - {} - - // -- Explicit basic constructors -- - - template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat::tquat(T s, vec<3, T, Q> const& v) - : x(v.x), y(v.y), z(v.z), w(s) - {} - - template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat::tquat(T _w, T _x, T _y, T _z) - : x(_x), y(_y), z(_z), w(_w) - {} - - // -- Conversion constructors -- - - template - template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat::tquat(tquat const& q) - : x(static_cast(q.x)) - , y(static_cast(q.y)) - , z(static_cast(q.z)) - , w(static_cast(q.w)) - {} - - //template - //GLM_FUNC_QUALIFIER tquat::tquat - //( - // valType const& pitch, - // valType const& yaw, - // valType const& roll - //) - //{ - // vec<3, valType> eulerAngle(pitch * valType(0.5), yaw * valType(0.5), roll * valType(0.5)); - // vec<3, valType> c = glm::cos(eulerAngle * valType(0.5)); - // vec<3, valType> s = glm::sin(eulerAngle * valType(0.5)); - // - // this->w = c.x * c.y * c.z + s.x * s.y * s.z; - // this->x = s.x * c.y * c.z - c.x * s.y * s.z; - // this->y = c.x * s.y * c.z + s.x * c.y * s.z; - // this->z = c.x * c.y * s.z - s.x * s.y * c.z; - //} - - template - GLM_FUNC_QUALIFIER tquat::tquat(vec<3, T, Q> const& u, vec<3, T, Q> const& v) - { - T norm_u_norm_v = sqrt(dot(u, u) * dot(v, v)); - T real_part = norm_u_norm_v + dot(u, v); - vec<3, T, Q> t; - - if(real_part < static_cast(1.e-6f) * norm_u_norm_v) - { - // If u and v are exactly opposite, rotate 180 degrees - // around an arbitrary orthogonal axis. Axis normalisation - // can happen later, when we normalise the quaternion. - real_part = static_cast(0); - t = abs(u.x) > abs(u.z) ? vec<3, T, Q>(-u.y, u.x, static_cast(0)) : vec<3, T, Q>(static_cast(0), -u.z, u.y); - } - else - { - // Otherwise, build quaternion the standard way. - t = cross(u, v); - } - - *this = normalize(tquat(real_part, t.x, t.y, t.z)); - } - - template - GLM_FUNC_QUALIFIER tquat::tquat(vec<3, T, Q> const& eulerAngle) - { - vec<3, T, Q> c = glm::cos(eulerAngle * T(0.5)); - vec<3, T, Q> s = glm::sin(eulerAngle * T(0.5)); - - this->w = c.x * c.y * c.z + s.x * s.y * s.z; - this->x = s.x * c.y * c.z - c.x * s.y * s.z; - this->y = c.x * s.y * c.z + s.x * c.y * s.z; - this->z = c.x * c.y * s.z - s.x * s.y * c.z; - } - - template - GLM_FUNC_QUALIFIER tquat::tquat(mat<3, 3, T, Q> const& m) - { - *this = quat_cast(m); - } - - template - GLM_FUNC_QUALIFIER tquat::tquat(mat<4, 4, T, Q> const& m) - { - *this = quat_cast(m); - } - -# if GLM_HAS_EXPLICIT_CONVERSION_OPERATORS - template - GLM_FUNC_QUALIFIER tquat::operator mat<3, 3, T, Q>() - { - return mat3_cast(*this); - } - - template - GLM_FUNC_QUALIFIER tquat::operator mat<4, 4, T, Q>() - { - return mat4_cast(*this); - } -# endif//GLM_HAS_EXPLICIT_CONVERSION_OPERATORS - - template - GLM_FUNC_QUALIFIER tquat conjugate(tquat const& q) - { - return tquat(q.w, -q.x, -q.y, -q.z); - } - - template - GLM_FUNC_QUALIFIER tquat inverse(tquat const& q) - { - return conjugate(q) / dot(q, q); - } - - // -- Unary arithmetic operators -- - -# if GLM_CONFIG_DEFAULTED_FUNCTIONS == GLM_DISABLE - template - GLM_FUNC_QUALIFIER tquat & tquat::operator=(tquat const& q) - { - this->w = q.w; - this->x = q.x; - this->y = q.y; - this->z = q.z; - return *this; - } -# endif - - template - template - GLM_FUNC_QUALIFIER tquat & tquat::operator=(tquat const& q) - { - this->w = static_cast(q.w); - this->x = static_cast(q.x); - this->y = static_cast(q.y); - this->z = static_cast(q.z); - return *this; - } - - template - template - GLM_FUNC_QUALIFIER tquat & tquat::operator+=(tquat const& q) - { - return (*this = detail::compute_quat_add::value>::call(*this, tquat(q))); - } - - template - template - GLM_FUNC_QUALIFIER tquat & tquat::operator-=(tquat const& q) - { - return (*this = detail::compute_quat_sub::value>::call(*this, tquat(q))); - } - - template - template - GLM_FUNC_QUALIFIER tquat & tquat::operator*=(tquat const& r) - { - tquat const p(*this); - tquat const q(r); - - this->w = p.w * q.w - p.x * q.x - p.y * q.y - p.z * q.z; - this->x = p.w * q.x + p.x * q.w + p.y * q.z - p.z * q.y; - this->y = p.w * q.y + p.y * q.w + p.z * q.x - p.x * q.z; - this->z = p.w * q.z + p.z * q.w + p.x * q.y - p.y * q.x; - return *this; - } - - template - template - GLM_FUNC_QUALIFIER tquat & tquat::operator*=(U s) - { - return (*this = detail::compute_quat_mul_scalar::value>::call(*this, static_cast(s))); - } - - template - template - GLM_FUNC_QUALIFIER tquat & tquat::operator/=(U s) - { - return (*this = detail::compute_quat_div_scalar::value>::call(*this, static_cast(s))); - } - - // -- Unary bit operators -- - - template - GLM_FUNC_QUALIFIER tquat operator+(tquat const& q) - { - return q; - } - - template - GLM_FUNC_QUALIFIER tquat operator-(tquat const& q) - { - return tquat(-q.w, -q.x, -q.y, -q.z); - } - - // -- Binary operators -- - - template - GLM_FUNC_QUALIFIER tquat operator+(tquat const& q, tquat const& p) - { - return tquat(q) += p; - } - - template - GLM_FUNC_QUALIFIER tquat operator-(tquat const& q, tquat const& p) - { - return tquat(q) -= p; - } - - template - GLM_FUNC_QUALIFIER tquat operator*(tquat const& q, tquat const& p) - { - return tquat(q) *= p; - } - - template - GLM_FUNC_QUALIFIER vec<3, T, Q> operator*(tquat const& q, vec<3, T, Q> const& v) - { - vec<3, T, Q> const QuatVector(q.x, q.y, q.z); - vec<3, T, Q> const uv(glm::cross(QuatVector, v)); - vec<3, T, Q> const uuv(glm::cross(QuatVector, uv)); - - return v + ((uv * q.w) + uuv) * static_cast(2); - } - - template - GLM_FUNC_QUALIFIER vec<3, T, Q> operator*(vec<3, T, Q> const& v, tquat const& q) - { - return glm::inverse(q) * v; - } - - template - GLM_FUNC_QUALIFIER vec<4, T, Q> operator*(tquat const& q, vec<4, T, Q> const& v) - { - return detail::compute_quat_mul_vec4::value>::call(q, v); - } - - template - GLM_FUNC_QUALIFIER vec<4, T, Q> operator*(vec<4, T, Q> const& v, tquat const& q) - { - return glm::inverse(q) * v; - } - - template - GLM_FUNC_QUALIFIER tquat operator*(tquat const& q, T const& s) - { - return tquat( - q.w * s, q.x * s, q.y * s, q.z * s); - } - - template - GLM_FUNC_QUALIFIER tquat operator*(T const& s, tquat const& q) - { - return q * s; - } - - template - GLM_FUNC_QUALIFIER tquat operator/(tquat const& q, T const& s) - { - return tquat( - q.w / s, q.x / s, q.y / s, q.z / s); - } - - // -- Boolean operators -- - - template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR bool operator==(tquat const& q1, tquat const& q2) - { - return q1.x == q2.x && q1.y == q2.y && q1.z == q2.z && q1.w == q2.w; - } - - template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR bool operator!=(tquat const& q1, tquat const& q2) - { - return q1.x != q2.x || q1.y != q2.y || q1.z != q2.z || q1.w != q2.w; - } - // -- Operations -- template - GLM_FUNC_QUALIFIER T dot(tquat const& x, tquat const& y) + GLM_FUNC_QUALIFIER T dot(qua const& x, qua const& y) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'dot' accepts only floating-point inputs"); - return detail::compute_dot, T, detail::is_aligned::value>::call(x, y); + return detail::compute_dot, T, detail::is_aligned::value>::call(x, y); } template - GLM_FUNC_QUALIFIER T length(tquat const& q) + GLM_FUNC_QUALIFIER T length(qua const& q) { return glm::sqrt(dot(q, q)); } template - GLM_FUNC_QUALIFIER tquat normalize(tquat const& q) + GLM_FUNC_QUALIFIER qua normalize(qua const& q) { T len = length(q); if(len <= T(0)) // Problem - return tquat(static_cast(1), static_cast(0), static_cast(0), static_cast(0)); + return qua(static_cast(1), static_cast(0), static_cast(0), static_cast(0)); T oneOverLen = T(1) / len; - return tquat(q.w * oneOverLen, q.x * oneOverLen, q.y * oneOverLen, q.z * oneOverLen); + return qua(q.w * oneOverLen, q.x * oneOverLen, q.y * oneOverLen, q.z * oneOverLen); } template - GLM_FUNC_QUALIFIER tquat cross(tquat const& q1, tquat const& q2) + GLM_FUNC_QUALIFIER qua cross(qua const& q1, qua const& q2) { - return tquat( + return qua( q1.w * q2.w - q1.x * q2.x - q1.y * q2.y - q1.z * q2.z, q1.w * q2.x + q1.x * q2.w + q1.y * q2.z - q1.z * q2.y, q1.w * q2.y + q1.y * q2.w + q1.z * q2.x - q1.x * q2.z, @@ -424,13 +45,13 @@ namespace detail /* // (x * sin(1 - a) * angle / sin(angle)) + (y * sin(a) * angle / sin(angle)) template - GLM_FUNC_QUALIFIER tquat mix(tquat const& x, tquat const& y, T const& a) + GLM_FUNC_QUALIFIER qua mix(qua const& x, qua const& y, T const& a) { if(a <= T(0)) return x; if(a >= T(1)) return y; float fCos = dot(x, y); - tquat y2(y); //BUG!!! tquat y2; + qua y2(y); //BUG!!! qua y2; if(fCos < T(0)) { y2 = -y; @@ -453,7 +74,7 @@ namespace detail k1 = sin((T(0) + a) * fAngle) * fOneOverSin; } - return tquat( + return qua( k0 * x.w + k1 * y2.w, k0 * x.x + k1 * y2.x, k0 * x.y + k1 * y2.y, @@ -461,10 +82,10 @@ namespace detail } template - GLM_FUNC_QUALIFIER tquat mix2 + GLM_FUNC_QUALIFIER qua mix2 ( - tquat const& x, - tquat const& y, + qua const& x, + qua const& y, T const& a ) { @@ -499,7 +120,7 @@ namespace detail */ template - GLM_FUNC_QUALIFIER tquat mix(tquat const& x, tquat const& y, T a) + GLM_FUNC_QUALIFIER qua mix(qua const& x, qua const& y, T a) { T cosTheta = dot(x, y); @@ -507,7 +128,7 @@ namespace detail if(cosTheta > T(1) - epsilon()) { // Linear interpolation - return tquat( + return qua( mix(x.w, y.w, a), mix(x.x, y.x, a), mix(x.y, y.y, a), @@ -522,7 +143,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER tquat lerp(tquat const& x, tquat const& y, T a) + GLM_FUNC_QUALIFIER qua lerp(qua const& x, qua const& y, T a) { // Lerp is only defined in [0, 1] assert(a >= static_cast(0)); @@ -532,9 +153,9 @@ namespace detail } template - GLM_FUNC_QUALIFIER tquat slerp(tquat const& x, tquat const& y, T a) + GLM_FUNC_QUALIFIER qua slerp(qua const& x, qua const& y, T a) { - tquat z = y; + qua z = y; T cosTheta = dot(x, y); @@ -550,7 +171,7 @@ namespace detail if(cosTheta > T(1) - epsilon()) { // Linear interpolation - return tquat( + return qua( mix(x.w, z.w, a), mix(x.x, z.x, a), mix(x.y, z.y, a), @@ -565,7 +186,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER tquat rotate(tquat const& q, T const& angle, vec<3, T, Q> const& v) + GLM_FUNC_QUALIFIER qua rotate(qua const& q, T const& angle, vec<3, T, Q> const& v) { vec<3, T, Q> Tmp = v; @@ -582,24 +203,24 @@ namespace detail T const AngleRad(angle); T const Sin = sin(AngleRad * T(0.5)); - return q * tquat(cos(AngleRad * T(0.5)), Tmp.x * Sin, Tmp.y * Sin, Tmp.z * Sin); - //return gtc::quaternion::cross(q, tquat(cos(AngleRad * T(0.5)), Tmp.x * fSin, Tmp.y * fSin, Tmp.z * fSin)); + return q * qua(cos(AngleRad * T(0.5)), Tmp.x * Sin, Tmp.y * Sin, Tmp.z * Sin); + //return gtc::quaternion::cross(q, qua(cos(AngleRad * T(0.5)), Tmp.x * fSin, Tmp.y * fSin, Tmp.z * fSin)); } template - GLM_FUNC_QUALIFIER vec<3, T, Q> eulerAngles(tquat const& x) + GLM_FUNC_QUALIFIER vec<3, T, Q> eulerAngles(qua const& x) { return vec<3, T, Q>(pitch(x), yaw(x), roll(x)); } template - GLM_FUNC_QUALIFIER T roll(tquat const& q) + GLM_FUNC_QUALIFIER T roll(qua const& q) { return static_cast(atan(static_cast(2) * (q.x * q.y + q.w * q.z), q.w * q.w + q.x * q.x - q.y * q.y - q.z * q.z)); } template - GLM_FUNC_QUALIFIER T pitch(tquat const& q) + GLM_FUNC_QUALIFIER T pitch(qua const& q) { //return T(atan(T(2) * (q.y * q.z + q.w * q.x), q.w * q.w - q.x * q.x - q.y * q.y + q.z * q.z)); T const y = static_cast(2) * (q.y * q.z + q.w * q.x); @@ -612,13 +233,13 @@ namespace detail } template - GLM_FUNC_QUALIFIER T yaw(tquat const& q) + GLM_FUNC_QUALIFIER T yaw(qua const& q) { return asin(clamp(static_cast(-2) * (q.x * q.z - q.w * q.y), static_cast(-1), static_cast(1))); } template - GLM_FUNC_QUALIFIER mat<3, 3, T, Q> mat3_cast(tquat const& q) + GLM_FUNC_QUALIFIER mat<3, 3, T, Q> mat3_cast(qua const& q) { mat<3, 3, T, Q> Result(T(1)); T qxx(q.x * q.x); @@ -646,13 +267,13 @@ namespace detail } template - GLM_FUNC_QUALIFIER mat<4, 4, T, Q> mat4_cast(tquat const& q) + GLM_FUNC_QUALIFIER mat<4, 4, T, Q> mat4_cast(qua const& q) { return mat<4, 4, T, Q>(mat3_cast(q)); } template - GLM_FUNC_QUALIFIER tquat quat_cast(mat<3, 3, T, Q> const& m) + GLM_FUNC_QUALIFIER qua quat_cast(mat<3, 3, T, Q> const& m) { T fourXSquaredMinus1 = m[0][0] - m[1][1] - m[2][2]; T fourYSquaredMinus1 = m[1][1] - m[0][0] - m[2][2]; @@ -683,33 +304,33 @@ namespace detail switch(biggestIndex) { case 0: - return tquat(biggestVal, (m[1][2] - m[2][1]) * mult, (m[2][0] - m[0][2]) * mult, (m[0][1] - m[1][0]) * mult); + return qua(biggestVal, (m[1][2] - m[2][1]) * mult, (m[2][0] - m[0][2]) * mult, (m[0][1] - m[1][0]) * mult); case 1: - return tquat((m[1][2] - m[2][1]) * mult, biggestVal, (m[0][1] + m[1][0]) * mult, (m[2][0] + m[0][2]) * mult); + return qua((m[1][2] - m[2][1]) * mult, biggestVal, (m[0][1] + m[1][0]) * mult, (m[2][0] + m[0][2]) * mult); case 2: - return tquat((m[2][0] - m[0][2]) * mult, (m[0][1] + m[1][0]) * mult, biggestVal, (m[1][2] + m[2][1]) * mult); + return qua((m[2][0] - m[0][2]) * mult, (m[0][1] + m[1][0]) * mult, biggestVal, (m[1][2] + m[2][1]) * mult); case 3: - return tquat((m[0][1] - m[1][0]) * mult, (m[2][0] + m[0][2]) * mult, (m[1][2] + m[2][1]) * mult, biggestVal); + return qua((m[0][1] - m[1][0]) * mult, (m[2][0] + m[0][2]) * mult, (m[1][2] + m[2][1]) * mult, biggestVal); default: // Silence a -Wswitch-default warning in GCC. Should never actually get here. Assert is just for sanity. assert(false); - return tquat(1, 0, 0, 0); + return qua(1, 0, 0, 0); } } template - GLM_FUNC_QUALIFIER tquat quat_cast(mat<4, 4, T, Q> const& m4) + GLM_FUNC_QUALIFIER qua quat_cast(mat<4, 4, T, Q> const& m4) { return quat_cast(mat<3, 3, T, Q>(m4)); } template - GLM_FUNC_QUALIFIER T angle(tquat const& x) + GLM_FUNC_QUALIFIER T angle(qua const& x) { return acos(x.w) * static_cast(2); } template - GLM_FUNC_QUALIFIER vec<3, T, Q> axis(tquat const& x) + GLM_FUNC_QUALIFIER vec<3, T, Q> axis(qua const& x) { T tmp1 = static_cast(1) - x.w * x.w; if(tmp1 <= static_cast(0)) @@ -719,9 +340,9 @@ namespace detail } template - GLM_FUNC_QUALIFIER tquat angleAxis(T const& angle, vec<3, T, Q> const& v) + GLM_FUNC_QUALIFIER qua angleAxis(T const& angle, vec<3, T, Q> const& v) { - tquat Result; + qua Result; T const a(angle); T const s = glm::sin(a * static_cast(0.5)); @@ -734,7 +355,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> lessThan(tquat const& x, tquat const& y) + GLM_FUNC_QUALIFIER vec<4, bool, Q> lessThan(qua const& x, qua const& y) { vec<4, bool, Q> Result; for(length_t i = 0; i < x.length(); ++i) @@ -743,7 +364,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> lessThanEqual(tquat const& x, tquat const& y) + GLM_FUNC_QUALIFIER vec<4, bool, Q> lessThanEqual(qua const& x, qua const& y) { vec<4, bool, Q> Result; for(length_t i = 0; i < x.length(); ++i) @@ -752,7 +373,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> greaterThan(tquat const& x, tquat const& y) + GLM_FUNC_QUALIFIER vec<4, bool, Q> greaterThan(qua const& x, qua const& y) { vec<4, bool, Q> Result; for(length_t i = 0; i < x.length(); ++i) @@ -761,7 +382,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> greaterThanEqual(tquat const& x, tquat const& y) + GLM_FUNC_QUALIFIER vec<4, bool, Q> greaterThanEqual(qua const& x, qua const& y) { vec<4, bool, Q> Result; for(length_t i = 0; i < x.length(); ++i) @@ -770,7 +391,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> equal(tquat const& x, tquat const& y) + GLM_FUNC_QUALIFIER vec<4, bool, Q> equal(qua const& x, qua const& y) { vec<4, bool, Q> Result; for(length_t i = 0; i < x.length(); ++i) @@ -779,14 +400,14 @@ namespace detail } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> equal(tquat const& x, tquat const& y, T epsilon) + GLM_FUNC_QUALIFIER vec<4, bool, Q> equal(qua const& x, qua const& y, T epsilon) { vec<4, T, Q> v(x.x - y.x, x.y - y.y, x.z - y.z, x.w - y.w); return lessThan(abs(v), vec<4, T, Q>(epsilon)); } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> notEqual(tquat const& x, tquat const& y) + GLM_FUNC_QUALIFIER vec<4, bool, Q> notEqual(qua const& x, qua const& y) { vec<4, bool, Q> Result; for(length_t i = 0; i < x.length(); ++i) @@ -795,14 +416,14 @@ namespace detail } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> notEqual(tquat const& x, tquat const& y, T epsilon) + GLM_FUNC_QUALIFIER vec<4, bool, Q> notEqual(qua const& x, qua const& y, T epsilon) { vec<4, T, Q> v(x.x - y.x, x.y - y.y, x.z - y.z, x.w - y.w); return greaterThanEqual(abs(v), vec<4, T, Q>(epsilon)); } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> isnan(tquat const& q) + GLM_FUNC_QUALIFIER vec<4, bool, Q> isnan(qua const& q) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isnan' only accept floating-point inputs"); @@ -810,7 +431,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER vec<4, bool, Q> isinf(tquat const& q) + GLM_FUNC_QUALIFIER vec<4, bool, Q> isinf(qua const& q) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isinf' only accept floating-point inputs"); diff --git a/glm/gtc/quaternion_simd.inl b/glm/gtc/quaternion_simd.inl index 58b9f8dc..84a190fb 100644 --- a/glm/gtc/quaternion_simd.inl +++ b/glm/gtc/quaternion_simd.inl @@ -9,7 +9,7 @@ namespace detail template struct compute_quat_mul { - static tquat call(tquat const& q1, tquat const& q2) + static qua call(qua const& q1, qua const& q2) { // SSE2 STATS: 11 shuffle, 8 mul, 8 add // SSE4 STATS: 3 shuffle, 4 mul, 4 dpps @@ -50,7 +50,7 @@ namespace detail // //return _mm_shuffle_ps(xxyy, zzww, _MM_SHUFFLE(2, 0, 2, 0)); - tquat Result; + qua Result; _mm_store_ss(&Result.x, add4); _mm_store_ss(&Result.y, add5); _mm_store_ss(&Result.z, add6); @@ -61,9 +61,9 @@ namespace detail */ template - struct compute_dot, float, true> + struct compute_dot, float, true> { - static GLM_FUNC_QUALIFIER float call(tquat const& x, tquat const& y) + static GLM_FUNC_QUALIFIER float call(qua const& x, qua const& y) { return _mm_cvtss_f32(glm_vec1_dot(x.data, y.data)); } @@ -72,9 +72,9 @@ namespace detail template struct compute_quat_add { - static tquat call(tquat const& q, tquat const& p) + static qua call(qua const& q, qua const& p) { - tquat Result; + qua Result; Result.data = _mm_add_ps(q.data, p.data); return Result; } @@ -84,9 +84,9 @@ namespace detail template struct compute_quat_add { - static tquat call(tquat const& a, tquat const& b) + static qua call(qua const& a, qua const& b) { - tquat Result; + qua Result; Result.data = _mm256_add_pd(a.data, b.data); return Result; } @@ -96,7 +96,7 @@ namespace detail template struct compute_quat_sub { - static tquat call(tquat const& q, tquat const& p) + static qua call(qua const& q, qua const& p) { vec<4, float, Q> Result; Result.data = _mm_sub_ps(q.data, p.data); @@ -108,9 +108,9 @@ namespace detail template struct compute_quat_sub { - static tquat call(tquat const& a, tquat const& b) + static qua call(qua const& a, qua const& b) { - tquat Result; + qua Result; Result.data = _mm256_sub_pd(a.data, b.data); return Result; } @@ -120,7 +120,7 @@ namespace detail template struct compute_quat_mul_scalar { - static tquat call(tquat const& q, float s) + static qua call(qua const& q, float s) { vec<4, float, Q> Result; Result.data = _mm_mul_ps(q.data, _mm_set_ps1(s)); @@ -132,9 +132,9 @@ namespace detail template struct compute_quat_mul_scalar { - static tquat call(tquat const& q, double s) + static qua call(qua const& q, double s) { - tquat Result; + qua Result; Result.data = _mm256_mul_pd(q.data, _mm_set_ps1(s)); return Result; } @@ -144,7 +144,7 @@ namespace detail template struct compute_quat_div_scalar { - static tquat call(tquat const& q, float s) + static qua call(qua const& q, float s) { vec<4, float, Q> Result; Result.data = _mm_div_ps(q.data, _mm_set_ps1(s)); @@ -156,9 +156,9 @@ namespace detail template struct compute_quat_div_scalar { - static tquat call(tquat const& q, double s) + static qua call(qua const& q, double s) { - tquat Result; + qua Result; Result.data = _mm256_div_pd(q.data, _mm_set_ps1(s)); return Result; } @@ -168,7 +168,7 @@ namespace detail template struct compute_quat_mul_vec4 { - static vec<4, float, Q> call(tquat const& q, vec<4, float, Q> const& v) + static vec<4, float, Q> call(qua const& q, vec<4, float, Q> const& v) { __m128 const q_wwww = _mm_shuffle_ps(q.data, q.data, _MM_SHUFFLE(3, 3, 3, 3)); __m128 const q_swp0 = _mm_shuffle_ps(q.data, q.data, _MM_SHUFFLE(3, 0, 2, 1)); diff --git a/glm/gtc/type_precision.hpp b/glm/gtc/type_precision.hpp index 48b4a169..1977df14 100644 --- a/glm/gtc/type_precision.hpp +++ b/glm/gtc/type_precision.hpp @@ -2204,37 +2204,37 @@ namespace glm /// Single-qualifier floating-point quaternion. /// @see gtc_type_precision - typedef tquat f32quat; + typedef qua f32quat; /// Low single-qualifier floating-point quaternion. /// @see gtc_type_precision - typedef tquat lowp_f32quat; + typedef qua lowp_f32quat; /// Low double-qualifier floating-point quaternion. /// @see gtc_type_precision - typedef tquat lowp_f64quat; + typedef qua lowp_f64quat; /// Medium single-qualifier floating-point quaternion. /// @see gtc_type_precision - typedef tquat mediump_f32quat; + typedef qua mediump_f32quat; # ifndef GLM_FORCE_SINGLE_ONLY /// Medium double-qualifier floating-point quaternion. /// @see gtc_type_precision - typedef tquat mediump_f64quat; + typedef qua mediump_f64quat; /// High single-qualifier floating-point quaternion. /// @see gtc_type_precision - typedef tquat highp_f32quat; + typedef qua highp_f32quat; /// High double-qualifier floating-point quaternion. /// @see gtc_type_precision - typedef tquat highp_f64quat; + typedef qua highp_f64quat; /// Double-qualifier floating-point quaternion. /// @see gtc_type_precision - typedef tquat f64quat; + typedef qua f64quat; # endif//GLM_FORCE_SINGLE_ONLY diff --git a/glm/gtc/type_ptr.hpp b/glm/gtc/type_ptr.hpp index d5108a4a..9ca4c403 100644 --- a/glm/gtc/type_ptr.hpp +++ b/glm/gtc/type_ptr.hpp @@ -223,7 +223,7 @@ namespace glm /// Build a quaternion from a pointer. /// @see gtc_type_ptr template - GLM_FUNC_DECL tquat make_quat(T const * const ptr); + GLM_FUNC_DECL qua make_quat(T const * const ptr); /// @} }//namespace glm diff --git a/glm/gtc/type_ptr.inl b/glm/gtc/type_ptr.inl index 4bb2e42b..71df4d30 100644 --- a/glm/gtc/type_ptr.inl +++ b/glm/gtc/type_ptr.inl @@ -152,13 +152,13 @@ namespace glm } template - GLM_FUNC_QUALIFIER T const * value_ptr(tquat const& q) + GLM_FUNC_QUALIFIER T const * value_ptr(qua const& q) { return &(q[0]); } template - GLM_FUNC_QUALIFIER T* value_ptr(tquat& q) + GLM_FUNC_QUALIFIER T* value_ptr(qua& q) { return &(q[0]); } @@ -374,10 +374,10 @@ namespace glm } template - GLM_FUNC_QUALIFIER tquat make_quat(T const *const ptr) + GLM_FUNC_QUALIFIER qua make_quat(T const *const ptr) { - tquat Result; - memcpy(value_ptr(Result), ptr, sizeof(tquat)); + qua Result; + memcpy(value_ptr(Result), ptr, sizeof(qua)); return Result; } diff --git a/glm/gtc/ulp.hpp b/glm/gtc/ulp.hpp index 02aea3f5..caa3bbd1 100644 --- a/glm/gtc/ulp.hpp +++ b/glm/gtc/ulp.hpp @@ -18,6 +18,7 @@ #include "../detail/setup.hpp" #include "../detail/qualifier.hpp" #include "../detail/type_int.hpp" +#include "../gtc/constants.hpp" #include "../ext/vector_relational.hpp" #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED) diff --git a/glm/gtx/dual_quaternion.hpp b/glm/gtx/dual_quaternion.hpp index 6744b055..1732b7dc 100644 --- a/glm/gtx/dual_quaternion.hpp +++ b/glm/gtx/dual_quaternion.hpp @@ -39,11 +39,11 @@ namespace glm // -- Implementation detail -- typedef T value_type; - typedef glm::tquat part_type; + typedef qua part_type; // -- Data -- - glm::tquat real, dual; + qua real, dual; // -- Component accesses -- @@ -63,9 +63,9 @@ namespace glm // -- Explicit basic constructors -- - GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(tquat const& real); - GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(tquat const& orientation, vec<3, T, Q> const& translation); - GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(tquat const& real, tquat const& dual); + GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(qua const& real); + GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(qua const& orientation, vec<3, T, Q> const& translation); + GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(qua const& real, qua const& dual); // -- Conversion constructors -- diff --git a/glm/gtx/dual_quaternion.inl b/glm/gtx/dual_quaternion.inl index 3223846e..fad07ea8 100644 --- a/glm/gtx/dual_quaternion.inl +++ b/glm/gtx/dual_quaternion.inl @@ -27,8 +27,8 @@ namespace glm template GLM_FUNC_QUALIFIER GLM_CONSTEXPR tdualquat::tdualquat() # if GLM_CONFIG_DEFAULTED_FUNCTIONS != GLM_DISABLE - : real(tquat()) - , dual(tquat(0, 0, 0, 0)) + : real(qua()) + , dual(qua(0, 0, 0, 0)) # endif {} @@ -49,12 +49,12 @@ namespace glm // -- Explicit basic constructors -- template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR tdualquat::tdualquat(tquat const& r) - : real(r), dual(tquat(0, 0, 0, 0)) + GLM_FUNC_QUALIFIER GLM_CONSTEXPR tdualquat::tdualquat(qua const& r) + : real(r), dual(qua(0, 0, 0, 0)) {} template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR tdualquat::tdualquat(tquat const& q, vec<3, T, Q> const& p) + GLM_FUNC_QUALIFIER GLM_CONSTEXPR tdualquat::tdualquat(qua const& q, vec<3, T, Q> const& p) : real(q), dual( T(-0.5) * ( p.x*q.x + p.y*q.y + p.z*q.z), T(+0.5) * ( p.x*q.w + p.y*q.z - p.z*q.y), @@ -63,7 +63,7 @@ namespace glm {} template - GLM_FUNC_QUALIFIER GLM_CONSTEXPR tdualquat::tdualquat(tquat const& r, tquat const& d) + GLM_FUNC_QUALIFIER GLM_CONSTEXPR tdualquat::tdualquat(qua const& r, qua const& d) : real(r), dual(d) {} @@ -219,8 +219,8 @@ namespace glm GLM_FUNC_QUALIFIER tdualquat dual_quat_identity() { return tdualquat( - tquat(static_cast(1), static_cast(0), static_cast(0), static_cast(0)), - tquat(static_cast(0), static_cast(0), static_cast(0), static_cast(0))); + qua(static_cast(1), static_cast(0), static_cast(0), static_cast(0)), + qua(static_cast(0), static_cast(0), static_cast(0), static_cast(0))); } template @@ -244,8 +244,8 @@ namespace glm template GLM_FUNC_QUALIFIER tdualquat inverse(tdualquat const& q) { - const glm::tquat real = conjugate(q.real); - const glm::tquat dual = conjugate(q.dual); + const glm::qua real = conjugate(q.real); + const glm::qua dual = conjugate(q.dual); return tdualquat(real, dual + (real * (-2.0f * dot(real,dual)))); } @@ -258,9 +258,9 @@ namespace glm template GLM_FUNC_QUALIFIER mat<3, 4, T, Q> mat3x4_cast(tdualquat const& x) { - tquat r = x.real / length2(x.real); + qua r = x.real / length2(x.real); - tquat const rr(r.w * x.real.w, r.x * x.real.x, r.y * x.real.y, r.z * x.real.z); + qua const rr(r.w * x.real.w, r.x * x.real.x, r.y * x.real.y, r.z * x.real.z); r *= static_cast(2); T const xy = r.x * x.real.y; @@ -295,14 +295,14 @@ namespace glm GLM_FUNC_QUALIFIER tdualquat dualquat_cast(mat<2, 4, T, Q> const& x) { return tdualquat( - tquat( x[0].w, x[0].x, x[0].y, x[0].z ), - tquat( x[1].w, x[1].x, x[1].y, x[1].z )); + qua( x[0].w, x[0].x, x[0].y, x[0].z ), + qua( x[1].w, x[1].x, x[1].y, x[1].z )); } template GLM_FUNC_QUALIFIER tdualquat dualquat_cast(mat<3, 4, T, Q> const& x) { - tquat real; + qua real; T const trace = x[0].x + x[1].y + x[2].z; if(trace > static_cast(0)) @@ -342,7 +342,7 @@ namespace glm real.w = (x[1].x - x[0].y) * invr; } - tquat dual; + qua dual; dual.x = static_cast(0.5) * ( x[0].w * real.w + x[1].w * real.z - x[2].w * real.y); dual.y = static_cast(0.5) * (-x[0].w * real.z + x[1].w * real.w + x[2].w * real.x); dual.z = static_cast(0.5) * ( x[0].w * real.y - x[1].w * real.x + x[2].w * real.w); diff --git a/glm/gtx/matrix_decompose.hpp b/glm/gtx/matrix_decompose.hpp index f8500d0e..bf75b93a 100644 --- a/glm/gtx/matrix_decompose.hpp +++ b/glm/gtx/matrix_decompose.hpp @@ -38,7 +38,7 @@ namespace glm template GLM_FUNC_DECL bool decompose( mat<4, 4, T, Q> const& modelMatrix, - vec<3, T, Q> & scale, tquat & orientation, vec<3, T, Q> & translation, vec<3, T, Q> & skew, vec<4, T, Q> & perspective); + vec<3, T, Q> & scale, qua & orientation, vec<3, T, Q> & translation, vec<3, T, Q> & skew, vec<4, T, Q> & perspective); /// @} }//namespace glm diff --git a/glm/gtx/matrix_decompose.inl b/glm/gtx/matrix_decompose.inl index 62f0c6a1..134103f3 100644 --- a/glm/gtx/matrix_decompose.inl +++ b/glm/gtx/matrix_decompose.inl @@ -29,7 +29,7 @@ namespace detail // Decomposes the mode matrix to translations,rotation scale components template - GLM_FUNC_QUALIFIER bool decompose(mat<4, 4, T, Q> const& ModelMatrix, vec<3, T, Q> & Scale, tquat & Orientation, vec<3, T, Q> & Translation, vec<3, T, Q> & Skew, vec<4, T, Q> & Perspective) + GLM_FUNC_QUALIFIER bool decompose(mat<4, 4, T, Q> const& ModelMatrix, vec<3, T, Q> & Scale, qua & Orientation, vec<3, T, Q> & Translation, vec<3, T, Q> & Skew, vec<4, T, Q> & Perspective) { mat<4, 4, T, Q> LocalMatrix(ModelMatrix); diff --git a/glm/gtx/quaternion.hpp b/glm/gtx/quaternion.hpp index 448d8401..ed1b76b1 100644 --- a/glm/gtx/quaternion.hpp +++ b/glm/gtx/quaternion.hpp @@ -36,14 +36,14 @@ namespace glm /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat quat_identity(); + GLM_FUNC_DECL qua quat_identity(); /// Compute a cross product between a quaternion and a vector. /// /// @see gtx_quaternion template GLM_FUNC_DECL vec<3, T, Q> cross( - tquat const& q, + qua const& q, vec<3, T, Q> const& v); //! Compute a cross product between a vector and a quaternion. @@ -52,64 +52,64 @@ namespace glm template GLM_FUNC_DECL vec<3, T, Q> cross( vec<3, T, Q> const& v, - tquat const& q); + qua const& q); //! Compute a point on a path according squad equation. //! q1 and q2 are control points; s1 and s2 are intermediate control points. /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat squad( - tquat const& q1, - tquat const& q2, - tquat const& s1, - tquat const& s2, + GLM_FUNC_DECL qua squad( + qua const& q1, + qua const& q2, + qua const& s1, + qua const& s2, T const& h); //! Returns an intermediate control point for squad interpolation. /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat intermediate( - tquat const& prev, - tquat const& curr, - tquat const& next); + GLM_FUNC_DECL qua intermediate( + qua const& prev, + qua const& curr, + qua const& next); //! Returns a exp of a quaternion. /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat exp( - tquat const& q); + GLM_FUNC_DECL qua exp( + qua const& q); //! Returns a log of a quaternion. /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat log( - tquat const& q); + GLM_FUNC_DECL qua log( + qua const& q); /// Returns x raised to the y power. /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat pow( - tquat const& x, + GLM_FUNC_DECL qua pow( + qua const& x, T const& y); //! Returns quarternion square root. /// /// @see gtx_quaternion //template - //tquat sqrt( - // tquat const& q); + //qua sqrt( + // qua const& q); //! Rotates a 3 components vector by a quaternion. /// /// @see gtx_quaternion template GLM_FUNC_DECL vec<3, T, Q> rotate( - tquat const& q, + qua const& q, vec<3, T, Q> const& v); /// Rotates a 4 components vector by a quaternion. @@ -117,7 +117,7 @@ namespace glm /// @see gtx_quaternion template GLM_FUNC_DECL vec<4, T, Q> rotate( - tquat const& q, + qua const& q, vec<4, T, Q> const& v); /// Extract the real component of a quaternion. @@ -125,52 +125,52 @@ namespace glm /// @see gtx_quaternion template GLM_FUNC_DECL T extractRealComponent( - tquat const& q); + qua const& q); /// Converts a quaternion to a 3 * 3 matrix. /// /// @see gtx_quaternion template GLM_FUNC_DECL mat<3, 3, T, Q> toMat3( - tquat const& x){return mat3_cast(x);} + qua const& x){return mat3_cast(x);} /// Converts a quaternion to a 4 * 4 matrix. /// /// @see gtx_quaternion template GLM_FUNC_DECL mat<4, 4, T, Q> toMat4( - tquat const& x){return mat4_cast(x);} + qua const& x){return mat4_cast(x);} /// Converts a 3 * 3 matrix to a quaternion. /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat toQuat( + GLM_FUNC_DECL qua toQuat( mat<3, 3, T, Q> const& x){return quat_cast(x);} /// Converts a 4 * 4 matrix to a quaternion. /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat toQuat( + GLM_FUNC_DECL qua toQuat( mat<4, 4, T, Q> const& x){return quat_cast(x);} /// Quaternion interpolation using the rotation short path. /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat shortMix( - tquat const& x, - tquat const& y, + GLM_FUNC_DECL qua shortMix( + qua const& x, + qua const& y, T const& a); /// Quaternion normalized linear interpolation. /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat fastMix( - tquat const& x, - tquat const& y, + GLM_FUNC_DECL qua fastMix( + qua const& x, + qua const& y, T const& a); /// Compute the rotation between two vectors. @@ -179,7 +179,7 @@ namespace glm /// /// @see gtx_quaternion template - GLM_FUNC_DECL tquat rotation( + GLM_FUNC_DECL qua rotation( vec<3, T, Q> const& orig, vec<3, T, Q> const& dest); @@ -188,7 +188,7 @@ namespace glm /// @param direction Desired forward direction. Needs to be normalized. /// @param up Up vector, how the camera is oriented. Typically (0, 1, 0). template - GLM_FUNC_DECL tquat quatLookAt( + GLM_FUNC_DECL qua quatLookAt( vec<3, T, Q> const& direction, vec<3, T, Q> const& up); @@ -197,7 +197,7 @@ namespace glm /// @param direction Desired forward direction onto which the -z-axis gets mapped. Needs to be normalized. /// @param up Up vector, how the camera is oriented. Typically (0, 1, 0). template - GLM_FUNC_DECL tquat quatLookAtRH( + GLM_FUNC_DECL qua quatLookAtRH( vec<3, T, Q> const& direction, vec<3, T, Q> const& up); @@ -206,7 +206,7 @@ namespace glm /// @param direction Desired forward direction onto which the +z-axis gets mapped. Needs to be normalized. /// @param up Up vector, how the camera is oriented. Typically (0, 1, 0). template - GLM_FUNC_DECL tquat quatLookAtLH( + GLM_FUNC_DECL qua quatLookAtLH( vec<3, T, Q> const& direction, vec<3, T, Q> const& up); @@ -214,7 +214,7 @@ namespace glm /// /// @see gtx_quaternion template - GLM_FUNC_DECL T length2(tquat const& q); + GLM_FUNC_DECL T length2(qua const& q); /// @} }//namespace glm diff --git a/glm/gtx/quaternion.inl b/glm/gtx/quaternion.inl index b497ac31..d0f57fbd 100644 --- a/glm/gtx/quaternion.inl +++ b/glm/gtx/quaternion.inl @@ -6,61 +6,61 @@ namespace glm { template - GLM_FUNC_QUALIFIER tquat quat_identity() + GLM_FUNC_QUALIFIER qua quat_identity() { - return tquat(static_cast(1), static_cast(0), static_cast(0), static_cast(0)); + return qua(static_cast(1), static_cast(0), static_cast(0), static_cast(0)); } template - GLM_FUNC_QUALIFIER vec<3, T, Q> cross(vec<3, T, Q> const& v, tquat const& q) + GLM_FUNC_QUALIFIER vec<3, T, Q> cross(vec<3, T, Q> const& v, qua const& q) { return inverse(q) * v; } template - GLM_FUNC_QUALIFIER vec<3, T, Q> cross(tquat const& q, vec<3, T, Q> const& v) + GLM_FUNC_QUALIFIER vec<3, T, Q> cross(qua const& q, vec<3, T, Q> const& v) { return q * v; } template - GLM_FUNC_QUALIFIER tquat squad + GLM_FUNC_QUALIFIER qua squad ( - tquat const& q1, - tquat const& q2, - tquat const& s1, - tquat const& s2, + qua const& q1, + qua const& q2, + qua const& s1, + qua const& s2, T const& h) { return mix(mix(q1, q2, h), mix(s1, s2, h), static_cast(2) * (static_cast(1) - h) * h); } template - GLM_FUNC_QUALIFIER tquat intermediate + GLM_FUNC_QUALIFIER qua intermediate ( - tquat const& prev, - tquat const& curr, - tquat const& next + qua const& prev, + qua const& curr, + qua const& next ) { - tquat invQuat = inverse(curr); + qua invQuat = inverse(curr); return exp((log(next * invQuat) + log(prev * invQuat)) / static_cast(-4)) * curr; } template - GLM_FUNC_QUALIFIER tquat exp(tquat const& q) + GLM_FUNC_QUALIFIER qua exp(qua const& q) { vec<3, T, Q> u(q.x, q.y, q.z); T const Angle = glm::length(u); if (Angle < epsilon()) - return tquat(); + return qua(); vec<3, T, Q> const v(u / Angle); - return tquat(cos(Angle), sin(Angle) * v); + return qua(cos(Angle), sin(Angle) * v); } template - GLM_FUNC_QUALIFIER tquat log(tquat const& q) + GLM_FUNC_QUALIFIER qua log(qua const& q) { vec<3, T, Q> u(q.x, q.y, q.z); T Vec3Len = length(u); @@ -68,27 +68,27 @@ namespace glm if (Vec3Len < epsilon()) { if(q.w > static_cast(0)) - return tquat(log(q.w), static_cast(0), static_cast(0), static_cast(0)); + return qua(log(q.w), static_cast(0), static_cast(0), static_cast(0)); else if(q.w < static_cast(0)) - return tquat(log(-q.w), pi(), static_cast(0), static_cast(0)); + return qua(log(-q.w), pi(), static_cast(0), static_cast(0)); else - return tquat(std::numeric_limits::infinity(), std::numeric_limits::infinity(), std::numeric_limits::infinity(), std::numeric_limits::infinity()); + return qua(std::numeric_limits::infinity(), std::numeric_limits::infinity(), std::numeric_limits::infinity(), std::numeric_limits::infinity()); } else { T t = atan(Vec3Len, T(q.w)) / Vec3Len; T QuatLen2 = Vec3Len * Vec3Len + q.w * q.w; - return tquat(static_cast(0.5) * log(QuatLen2), t * q.x, t * q.y, t * q.z); + return qua(static_cast(0.5) * log(QuatLen2), t * q.x, t * q.y, t * q.z); } } template - GLM_FUNC_QUALIFIER tquat pow(tquat const& x, T const& y) + GLM_FUNC_QUALIFIER qua pow(qua const& x, T const& y) { //Raising to the power of 0 should yield 1 //Needed to prevent a division by 0 error later on if(y > -epsilon() && y < epsilon()) - return tquat(1,0,0,0); + return qua(1,0,0,0); //To deal with non-unit quaternions T magnitude = sqrt(x.x * x.x + x.y * x.y + x.z * x.z + x.w *x.w); @@ -96,30 +96,30 @@ namespace glm //Equivalent to raising a real number to a power //Needed to prevent a division by 0 error later on if(abs(x.w / magnitude) > static_cast(1) - epsilon() && abs(x.w / magnitude) < static_cast(1) + epsilon()) - return tquat(pow(x.w, y),0,0,0); + return qua(pow(x.w, y),0,0,0); T Angle = acos(x.w / magnitude); T NewAngle = Angle * y; T Div = sin(NewAngle) / sin(Angle); T Mag = pow(magnitude, y - static_cast(1)); - return tquat(cos(NewAngle) * magnitude * Mag, x.x * Div * Mag, x.y * Div * Mag, x.z * Div * Mag); + return qua(cos(NewAngle) * magnitude * Mag, x.x * Div * Mag, x.y * Div * Mag, x.z * Div * Mag); } template - GLM_FUNC_QUALIFIER vec<3, T, Q> rotate(tquat const& q, vec<3, T, Q> const& v) + GLM_FUNC_QUALIFIER vec<3, T, Q> rotate(qua const& q, vec<3, T, Q> const& v) { return q * v; } template - GLM_FUNC_QUALIFIER vec<4, T, Q> rotate(tquat const& q, vec<4, T, Q> const& v) + GLM_FUNC_QUALIFIER vec<4, T, Q> rotate(qua const& q, vec<4, T, Q> const& v) { return q * v; } template - GLM_FUNC_QUALIFIER T extractRealComponent(tquat const& q) + GLM_FUNC_QUALIFIER T extractRealComponent(qua const& q) { T w = static_cast(1) - q.x * q.x - q.y * q.y - q.z * q.z; if(w < T(0)) @@ -129,19 +129,19 @@ namespace glm } template - GLM_FUNC_QUALIFIER T length2(tquat const& q) + GLM_FUNC_QUALIFIER T length2(qua const& q) { return q.x * q.x + q.y * q.y + q.z * q.z + q.w * q.w; } template - GLM_FUNC_QUALIFIER tquat shortMix(tquat const& x, tquat const& y, T const& a) + GLM_FUNC_QUALIFIER qua shortMix(qua const& x, qua const& y, T const& a) { if(a <= static_cast(0)) return x; if(a >= static_cast(1)) return y; T fCos = dot(x, y); - tquat y2(y); //BUG!!! tquat y2; + qua y2(y); //BUG!!! qua y2; if(fCos < static_cast(0)) { y2 = -y; @@ -164,7 +164,7 @@ namespace glm k1 = sin((static_cast(0) + a) * fAngle) * fOneOverSin; } - return tquat( + return qua( k0 * x.w + k1 * y2.w, k0 * x.x + k1 * y2.x, k0 * x.y + k1 * y2.y, @@ -172,13 +172,13 @@ namespace glm } template - GLM_FUNC_QUALIFIER tquat fastMix(tquat const& x, tquat const& y, T const& a) + GLM_FUNC_QUALIFIER qua fastMix(qua const& x, qua const& y, T const& a) { return glm::normalize(x * (static_cast(1) - a) + (y * a)); } template - GLM_FUNC_QUALIFIER tquat rotation(vec<3, T, Q> const& orig, vec<3, T, Q> const& dest) + GLM_FUNC_QUALIFIER qua rotation(vec<3, T, Q> const& orig, vec<3, T, Q> const& dest) { T cosTheta = dot(orig, dest); vec<3, T, Q> rotationAxis; @@ -209,7 +209,7 @@ namespace glm T s = sqrt((T(1) + cosTheta) * static_cast(2)); T invs = static_cast(1) / s; - return tquat( + return qua( s * static_cast(0.5f), rotationAxis.x * invs, rotationAxis.y * invs, @@ -217,7 +217,7 @@ namespace glm } template - GLM_FUNC_QUALIFIER tquat quatLookAt(vec<3, T, Q> const& direction, vec<3, T, Q> const& up) + GLM_FUNC_QUALIFIER qua quatLookAt(vec<3, T, Q> const& direction, vec<3, T, Q> const& up) { # if GLM_CONFIG_CLIP_CONTROL & GLM_CLIP_CONTROL_LH_BIT return quatLookAtLH(direction, up); @@ -227,7 +227,7 @@ namespace glm } template - GLM_FUNC_QUALIFIER tquat quatLookAtRH(vec<3, T, Q> const& direction, vec<3, T, Q> const& up) + GLM_FUNC_QUALIFIER qua quatLookAtRH(vec<3, T, Q> const& direction, vec<3, T, Q> const& up) { mat<3, 3, T, Q> Result; @@ -239,7 +239,7 @@ namespace glm } template - GLM_FUNC_QUALIFIER tquat quatLookAtLH(vec<3, T, Q> const& direction, vec<3, T, Q> const& up) + GLM_FUNC_QUALIFIER qua quatLookAtLH(vec<3, T, Q> const& direction, vec<3, T, Q> const& up) { mat<3, 3, T, Q> Result; diff --git a/glm/gtx/rotate_normalized_axis.hpp b/glm/gtx/rotate_normalized_axis.hpp index 7a35c8bd..87a63eb8 100644 --- a/glm/gtx/rotate_normalized_axis.hpp +++ b/glm/gtx/rotate_normalized_axis.hpp @@ -57,8 +57,8 @@ namespace glm /// /// @see gtx_rotate_normalized_axis template - GLM_FUNC_DECL tquat rotateNormalizedAxis( - tquat const& q, + GLM_FUNC_DECL qua rotateNormalizedAxis( + qua const& q, T const& angle, vec<3, T, Q> const& axis); diff --git a/glm/gtx/rotate_normalized_axis.inl b/glm/gtx/rotate_normalized_axis.inl index efd265cd..b2e9278c 100644 --- a/glm/gtx/rotate_normalized_axis.inl +++ b/glm/gtx/rotate_normalized_axis.inl @@ -40,9 +40,9 @@ namespace glm } template - GLM_FUNC_QUALIFIER tquat rotateNormalizedAxis + GLM_FUNC_QUALIFIER qua rotateNormalizedAxis ( - tquat const& q, + qua const& q, T const& angle, vec<3, T, Q> const& v ) @@ -52,7 +52,7 @@ namespace glm T const AngleRad(angle); T const Sin = sin(AngleRad * T(0.5)); - return q * tquat(cos(AngleRad * static_cast(0.5)), Tmp.x * Sin, Tmp.y * Sin, Tmp.z * Sin); + return q * qua(cos(AngleRad * static_cast(0.5)), Tmp.x * Sin, Tmp.y * Sin, Tmp.z * Sin); //return gtc::quaternion::cross(q, tquat(cos(AngleRad * T(0.5)), Tmp.x * fSin, Tmp.y * fSin, Tmp.z * fSin)); } }//namespace glm diff --git a/glm/gtx/string_cast.inl b/glm/gtx/string_cast.inl index dd435814..4ba7da3b 100644 --- a/glm/gtx/string_cast.inl +++ b/glm/gtx/string_cast.inl @@ -439,9 +439,9 @@ namespace detail template - struct compute_to_string > + struct compute_to_string > { - GLM_FUNC_QUALIFIER static std::string call(tquat const& x) + GLM_FUNC_QUALIFIER static std::string call(qua const& x) { char const * PrefixStr = prefix::value(); char const * LiteralStr = literal::is_iec559>::value(); diff --git a/glm/gtx/type_aligned.hpp b/glm/gtx/type_aligned.hpp index bb56911d..17b9d2ae 100644 --- a/glm/gtx/type_aligned.hpp +++ b/glm/gtx/type_aligned.hpp @@ -960,7 +960,7 @@ namespace glm /// Single-qualifier floating-point aligned quaternion. /// @see gtx_type_aligned - GLM_ALIGNED_TYPEDEF(fquat, aligned_fquat, 16); + GLM_ALIGNED_TYPEDEF(quat, aligned_fquat, 16); /// Double-qualifier floating-point aligned quaternion. /// @see gtx_type_aligned diff --git a/glm/gtx/type_trait.hpp b/glm/gtx/type_trait.hpp index fc2e776e..6a7bed6c 100644 --- a/glm/gtx/type_trait.hpp +++ b/glm/gtx/type_trait.hpp @@ -62,7 +62,7 @@ namespace glm }; template - struct type > + struct type > { static bool const is_vec = false; static bool const is_mat = false; diff --git a/glm/gtx/type_trait.inl b/glm/gtx/type_trait.inl index 8cace179..045de959 100644 --- a/glm/gtx/type_trait.inl +++ b/glm/gtx/type_trait.inl @@ -41,13 +41,13 @@ namespace glm // tquat template - bool const type >::is_vec; + bool const type >::is_vec; template - bool const type >::is_mat; + bool const type >::is_mat; template - bool const type >::is_quat; + bool const type >::is_quat; template - length_t const type >::components; + length_t const type >::components; // tdualquat template diff --git a/test/core/core_func_exponential.cpp b/test/core/core_func_exponential.cpp index 18517147..6a49a976 100644 --- a/test/core/core_func_exponential.cpp +++ b/test/core/core_func_exponential.cpp @@ -3,7 +3,10 @@ #include #include #include -#include +#include +#include +#include +#include static int test_pow() { diff --git a/test/core/core_type_vec4.cpp b/test/core/core_type_vec4.cpp index 8558fbb3..e242948a 100644 --- a/test/core/core_type_vec4.cpp +++ b/test/core/core_type_vec4.cpp @@ -1,7 +1,8 @@ #define GLM_FORCE_ALIGNED #define GLM_FORCE_SWIZZLE -#include +#include #include +#include #include #include #include @@ -740,10 +741,10 @@ static int test_inheritance() my_vec4 v; Error += v.member == 82 ? 0 : 1; - Error += glm::epsilonEqual(v.x, 76.f, glm::epsilon()) ? 0 : 1; - Error += glm::epsilonEqual(v.y, 75.f, glm::epsilon()) ? 0 : 1; - Error += glm::epsilonEqual(v.z, 74.f, glm::epsilon()) ? 0 : 1; - Error += glm::epsilonEqual(v.w, 73.f, glm::epsilon()) ? 0 : 1; + Error += glm::equal(v.x, 76.f, glm::epsilon()) ? 0 : 1; + Error += glm::equal(v.y, 75.f, glm::epsilon()) ? 0 : 1; + Error += glm::equal(v.z, 74.f, glm::epsilon()) ? 0 : 1; + Error += glm::equal(v.w, 73.f, glm::epsilon()) ? 0 : 1; return Error; } diff --git a/test/gtx/gtx_matrix_interpolation.cpp b/test/gtx/gtx_matrix_interpolation.cpp index 6d965f87..93398b66 100644 --- a/test/gtx/gtx_matrix_interpolation.cpp +++ b/test/gtx/gtx_matrix_interpolation.cpp @@ -26,7 +26,7 @@ int test_axisAngle() std::cout << "dltAxis: (" << dltAxis.x << ", " << dltAxis.y << ", " << dltAxis.z << "), dltAngle: " << dltAngle << std::endl; - glm::fquat q = glm::quat_cast(dltRotation); + glm::quat q = glm::quat_cast(dltRotation); std::cout << "q: (" << q.x << ", " << q.y << ", " << q.z << ", " << q.w << ")" << std::endl; float yaw = glm::yaw(q); std::cout << "Yaw: " << yaw << std::endl;