Clutter Engine 0.0.1
Loading...
Searching...
No Matches
dual_quaternion.hpp
Go to the documentation of this file.
1
15
16#pragma once
17
18// Dependency:
19#include "../glm.hpp"
20#include "../gtc/constants.hpp"
21#include "../gtc/quaternion.hpp"
22
23#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
24# ifndef GLM_ENABLE_EXPERIMENTAL
25# pragma message("GLM: GLM_GTX_dual_quaternion is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it.")
26# else
27# pragma message("GLM: GLM_GTX_dual_quaternion extension included")
28# endif
29#endif
30
31namespace glm
32{
35
36 template<typename T, qualifier Q = defaultp>
37 struct tdualquat
38 {
39 // -- Implementation detail --
40
41 typedef T value_type;
42 typedef qua<T, Q> part_type;
43
44 // -- Data --
45
46 qua<T, Q> real, dual;
47
48 // -- Component accesses --
49
50 typedef length_t length_type;
52 GLM_FUNC_DECL static GLM_CONSTEXPR length_type length(){return 2;}
53
54 GLM_FUNC_DECL part_type & operator[](length_type i);
55 GLM_FUNC_DECL part_type const& operator[](length_type i) const;
56
57 // -- Implicit basic constructors --
58
59 GLM_FUNC_DECL GLM_CONSTEXPR tdualquat() GLM_DEFAULT;
60 GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(tdualquat<T, Q> const& d) GLM_DEFAULT;
61 template<qualifier P>
62 GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(tdualquat<T, P> const& d);
63
64 // -- Explicit basic constructors --
65
66 GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(qua<T, Q> const& real);
67 GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(qua<T, Q> const& orientation, vec<3, T, Q> const& translation);
68 GLM_FUNC_DECL GLM_CONSTEXPR tdualquat(qua<T, Q> const& real, qua<T, Q> const& dual);
69
70 // -- Conversion constructors --
71
72 template<typename U, qualifier P>
73 GLM_FUNC_DECL GLM_CONSTEXPR GLM_EXPLICIT tdualquat(tdualquat<U, P> const& q);
74
75 GLM_FUNC_DECL GLM_EXPLICIT GLM_CONSTEXPR tdualquat(mat<2, 4, T, Q> const& holder_mat);
76 GLM_FUNC_DECL GLM_EXPLICIT GLM_CONSTEXPR tdualquat(mat<3, 4, T, Q> const& aug_mat);
77
78 // -- Unary arithmetic operators --
79
80 GLM_FUNC_DECL tdualquat<T, Q> & operator=(tdualquat<T, Q> const& m) GLM_DEFAULT;
81
82 template<typename U>
83 GLM_FUNC_DECL tdualquat<T, Q> & operator=(tdualquat<U, Q> const& m);
84 template<typename U>
85 GLM_FUNC_DECL tdualquat<T, Q> & operator*=(U s);
86 template<typename U>
87 GLM_FUNC_DECL tdualquat<T, Q> & operator/=(U s);
88 };
89
90 // -- Unary bit operators --
91
92 template<typename T, qualifier Q>
93 GLM_FUNC_DECL tdualquat<T, Q> operator+(tdualquat<T, Q> const& q);
94
95 template<typename T, qualifier Q>
96 GLM_FUNC_DECL tdualquat<T, Q> operator-(tdualquat<T, Q> const& q);
97
98 // -- Binary operators --
99
100 template<typename T, qualifier Q>
101 GLM_FUNC_DECL tdualquat<T, Q> operator+(tdualquat<T, Q> const& q, tdualquat<T, Q> const& p);
102
103 template<typename T, qualifier Q>
104 GLM_FUNC_DECL tdualquat<T, Q> operator*(tdualquat<T, Q> const& q, tdualquat<T, Q> const& p);
105
106 template<typename T, qualifier Q>
107 GLM_FUNC_DECL vec<3, T, Q> operator*(tdualquat<T, Q> const& q, vec<3, T, Q> const& v);
108
109 template<typename T, qualifier Q>
110 GLM_FUNC_DECL vec<3, T, Q> operator*(vec<3, T, Q> const& v, tdualquat<T, Q> const& q);
111
112 template<typename T, qualifier Q>
113 GLM_FUNC_DECL vec<4, T, Q> operator*(tdualquat<T, Q> const& q, vec<4, T, Q> const& v);
114
115 template<typename T, qualifier Q>
116 GLM_FUNC_DECL vec<4, T, Q> operator*(vec<4, T, Q> const& v, tdualquat<T, Q> const& q);
117
118 template<typename T, qualifier Q>
119 GLM_FUNC_DECL tdualquat<T, Q> operator*(tdualquat<T, Q> const& q, T const& s);
120
121 template<typename T, qualifier Q>
122 GLM_FUNC_DECL tdualquat<T, Q> operator*(T const& s, tdualquat<T, Q> const& q);
123
124 template<typename T, qualifier Q>
125 GLM_FUNC_DECL tdualquat<T, Q> operator/(tdualquat<T, Q> const& q, T const& s);
126
127 // -- Boolean operators --
128
129 template<typename T, qualifier Q>
130 GLM_FUNC_DECL bool operator==(tdualquat<T, Q> const& q1, tdualquat<T, Q> const& q2);
131
132 template<typename T, qualifier Q>
133 GLM_FUNC_DECL bool operator!=(tdualquat<T, Q> const& q1, tdualquat<T, Q> const& q2);
134
138 template <typename T, qualifier Q>
139 GLM_FUNC_DECL tdualquat<T, Q> dual_quat_identity();
140
144 template<typename T, qualifier Q>
145 GLM_FUNC_DECL tdualquat<T, Q> normalize(tdualquat<T, Q> const& q);
146
150 template<typename T, qualifier Q>
151 GLM_FUNC_DECL tdualquat<T, Q> lerp(tdualquat<T, Q> const& x, tdualquat<T, Q> const& y, T const& a);
152
156 template<typename T, qualifier Q>
157 GLM_FUNC_DECL tdualquat<T, Q> inverse(tdualquat<T, Q> const& q);
158
162 template<typename T, qualifier Q>
163 GLM_FUNC_DECL mat<2, 4, T, Q> mat2x4_cast(tdualquat<T, Q> const& x);
164
168 template<typename T, qualifier Q>
169 GLM_FUNC_DECL mat<3, 4, T, Q> mat3x4_cast(tdualquat<T, Q> const& x);
170
174 template<typename T, qualifier Q>
175 GLM_FUNC_DECL tdualquat<T, Q> dualquat_cast(mat<2, 4, T, Q> const& x);
176
180 template<typename T, qualifier Q>
181 GLM_FUNC_DECL tdualquat<T, Q> dualquat_cast(mat<3, 4, T, Q> const& x);
182
183
187 typedef tdualquat<float, lowp> lowp_dualquat;
188
193
198
199
204
209
214
215
219 typedef tdualquat<double, lowp> lowp_ddualquat;
220
225
230
231
232#if(!defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
237
242#elif(defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
245#elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
248#elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && defined(GLM_PRECISION_LOWP_FLOAT))
249 typedef lowp_fdualquat dualquat;
251#else
252# error "GLM error: multiple default precision requested for single-precision floating-point types"
253#endif
254
255
256#if(!defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE))
261#elif(defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE))
263#elif(!defined(GLM_PRECISION_HIGHP_DOUBLE) && defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE))
265#elif(!defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && defined(GLM_PRECISION_LOWP_DOUBLE))
267#else
268# error "GLM error: Multiple default precision requested for double-precision floating-point types"
269#endif
270
272} //namespace glm
273
274#include "dual_quaternion.inl"
GLM_FUNC_QUALIFIER vec< L, T, Q > normalize(vec< L, T, Q > const &x)
Definition func_geometric.inl:190
GLM_FUNC_QUALIFIER mat< C, R, T, Q > inverse(mat< C, R, T, Q > const &m)
Definition func_matrix.inl:388
GLM_FUNC_DECL qua< T, Q > lerp(qua< T, Q > const &x, qua< T, Q > const &y, T a)
Definition quaternion_common.inl:29
highp_fdualquat dualquat
Definition dual_quaternion.hpp:236
highp_ddualquat ddualquat
Definition dual_quaternion.hpp:260
GLM_FUNC_DECL tdualquat< T, Q > dual_quat_identity()
Definition dual_quaternion.inl:219
highp_fdualquat fdualquat
Definition dual_quaternion.hpp:241
GLM_FUNC_DECL mat< 2, 4, T, Q > mat2x4_cast(tdualquat< T, Q > const &x)
Definition dual_quaternion.inl:253
GLM_FUNC_DECL tdualquat< T, Q > dualquat_cast(mat< 2, 4, T, Q > const &x)
Definition dual_quaternion.inl:295
GLM_FUNC_DECL mat< 3, 4, T, Q > mat3x4_cast(tdualquat< T, Q > const &x)
Definition dual_quaternion.inl:259
GLM_FUNC_DECL mat< 4, 4, T, Q > orientation(vec< 3, T, Q > const &Normal, vec< 3, T, Q > const &Up)
Definition rotate_vector.inl:174
Core features
Definition common.hpp:21
qualifier
Qualify GLM types in term of alignment (packed, aligned) and precision in term of ULPs (lowp,...
Definition qualifier.hpp:9
@ mediump
By default mediump qualifier is also packed.
Definition qualifier.hpp:22
@ highp
By default highp qualifier is also packed.
Definition qualifier.hpp:21
@ lowp
By default lowp qualifier is also packed.
Definition qualifier.hpp:23
Definition qualifier.hpp:36
Definition type_quat.hpp:20
Definition dual_quaternion.hpp:38
static GLM_FUNC_DECL GLM_CONSTEXPR length_type length()
Return the count of components of a dual quaternion.
Definition dual_quaternion.hpp:52
Definition qualifier.hpp:35