17 #include "../mat3x3.hpp"
18 #include "../mat4x4.hpp"
19 #include "../vec3.hpp"
20 #include "../vec4.hpp"
21 #include "../gtc/constants.hpp"
23 #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED)
24 # pragma message("GLM: GLM_GTC_quaternion extension included")
32 template <
typename T, precision P = defaultp>
37 typedef tquat<T, P> type;
42 # if GLM_HAS_ALIGNED_TYPE
43 # if GLM_COMPILER & GLM_COMPILER_GCC
44 # pragma GCC diagnostic push
45 # pragma GCC diagnostic ignored "-Wpedantic"
47 # if GLM_COMPILER & GLM_COMPILER_CLANG
48 # pragma clang diagnostic push
49 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct"
50 # pragma clang diagnostic ignored "-Wnested-anon-types"
55 struct { T x, y, z, w;};
56 typename detail::storage<T, sizeof(T) * 4, detail::is_aligned<P>::value>::type data;
59 # if GLM_COMPILER & GLM_COMPILER_CLANG
60 # pragma clang diagnostic pop
62 # if GLM_COMPILER & GLM_COMPILER_GCC
63 # pragma GCC diagnostic pop
71 typedef length_t length_type;
73 GLM_FUNC_DECL
static length_type
length(){
return 4;}
75 GLM_FUNC_DECL T & operator[](length_type i);
76 GLM_FUNC_DECL T
const & operator[](length_type i)
const;
80 GLM_FUNC_DECL GLM_CONSTEXPR tquat() GLM_DEFAULT_CTOR;
81 GLM_FUNC_DECL GLM_CONSTEXPR tquat(tquat<T, P> const & q) GLM_DEFAULT;
82 template <precision Q>
83 GLM_FUNC_DECL GLM_CONSTEXPR tquat(tquat<T, Q> const & q);
87 GLM_FUNC_DECL GLM_CONSTEXPR_CTOR explicit tquat(ctor);
88 GLM_FUNC_DECL GLM_CONSTEXPR tquat(T const & s, tvec3<T, P> const & v);
89 GLM_FUNC_DECL GLM_CONSTEXPR tquat(T const & w, T const & x, T const & y, T const & z);
93 template <typename U, precision Q>
94 GLM_FUNC_DECL GLM_CONSTEXPR GLM_EXPLICIT tquat(tquat<U, Q> const & q);
97 # if GLM_HAS_EXPLICIT_CONVERSION_OPERATORS
98 GLM_FUNC_DECL
explicit operator tmat3x3<T, P>();
99 GLM_FUNC_DECL
explicit operator tmat4x4<T, P>();
108 GLM_FUNC_DECL tquat(tvec3<T, P>
const & u, tvec3<T, P>
const & v);
111 GLM_FUNC_DECL GLM_EXPLICIT tquat(tvec3<T, P>
const &
eulerAngles);
112 GLM_FUNC_DECL GLM_EXPLICIT tquat(tmat3x3<T, P>
const & m);
113 GLM_FUNC_DECL GLM_EXPLICIT tquat(tmat4x4<T, P>
const & m);
117 GLM_FUNC_DECL tquat<T, P> & operator=(tquat<T, P>
const & m) GLM_DEFAULT;
119 template <
typename U>
120 GLM_FUNC_DECL tquat<T, P> & operator=(tquat<U, P>
const & m);
121 template <
typename U>
122 GLM_FUNC_DECL tquat<T, P> & operator+=(tquat<U, P>
const & q);
123 template <
typename U>
124 GLM_FUNC_DECL tquat<T, P> & operator-=(tquat<U, P>
const & q);
125 template <
typename U>
126 GLM_FUNC_DECL tquat<T, P> & operator*=(tquat<U, P>
const & q);
127 template <
typename U>
128 GLM_FUNC_DECL tquat<T, P> & operator*=(U s);
129 template <
typename U>
130 GLM_FUNC_DECL tquat<T, P> & operator/=(U s);
135 template <
typename T, precision P>
136 GLM_FUNC_DECL tquat<T, P> operator+(tquat<T, P>
const & q);
138 template <
typename T, precision P>
139 GLM_FUNC_DECL tquat<T, P> operator-(tquat<T, P>
const & q);
143 template <
typename T, precision P>
144 GLM_FUNC_DECL tquat<T, P> operator+(tquat<T, P>
const & q, tquat<T, P>
const & p);
146 template <
typename T, precision P>
147 GLM_FUNC_DECL tquat<T, P> operator*(tquat<T, P>
const & q, tquat<T, P>
const & p);
149 template <
typename T, precision P>
150 GLM_FUNC_DECL tvec3<T, P> operator*(tquat<T, P>
const & q, tvec3<T, P>
const & v);
152 template <
typename T, precision P>
153 GLM_FUNC_DECL tvec3<T, P> operator*(tvec3<T, P>
const & v, tquat<T, P>
const & q);
155 template <
typename T, precision P>
156 GLM_FUNC_DECL tvec4<T, P> operator*(tquat<T, P>
const & q, tvec4<T, P>
const & v);
158 template <
typename T, precision P>
159 GLM_FUNC_DECL tvec4<T, P> operator*(tvec4<T, P>
const & v, tquat<T, P>
const & q);
161 template <
typename T, precision P>
162 GLM_FUNC_DECL tquat<T, P> operator*(tquat<T, P>
const & q, T
const & s);
164 template <
typename T, precision P>
165 GLM_FUNC_DECL tquat<T, P> operator*(T
const & s, tquat<T, P>
const & q);
167 template <
typename T, precision P>
168 GLM_FUNC_DECL tquat<T, P> operator/(tquat<T, P>
const & q, T
const & s);
172 template <
typename T, precision P>
173 GLM_FUNC_DECL
bool operator==(tquat<T, P>
const & q1, tquat<T, P>
const & q2);
175 template <
typename T, precision P>
176 GLM_FUNC_DECL
bool operator!=(tquat<T, P>
const & q1, tquat<T, P>
const & q2);
181 template <
typename T, precision P>
182 GLM_FUNC_DECL T
length(tquat<T, P>
const & q);
187 template <
typename T, precision P>
188 GLM_FUNC_DECL tquat<T, P>
normalize(tquat<T, P>
const & q);
193 template <
typename T, precision P,
template <
typename, precision>
class quatType>
194 GLM_FUNC_DECL T
dot(quatType<T, P>
const & x, quatType<T, P>
const & y);
206 template <
typename T, precision P>
207 GLM_FUNC_DECL tquat<T, P>
mix(tquat<T, P>
const & x, tquat<T, P>
const & y, T a);
217 template <
typename T, precision P>
218 GLM_FUNC_DECL tquat<T, P>
lerp(tquat<T, P>
const & x, tquat<T, P>
const & y, T a);
228 template <
typename T, precision P>
229 GLM_FUNC_DECL tquat<T, P>
slerp(tquat<T, P>
const & x, tquat<T, P>
const & y, T a);
234 template <
typename T, precision P>
235 GLM_FUNC_DECL tquat<T, P>
conjugate(tquat<T, P>
const & q);
240 template <
typename T, precision P>
241 GLM_FUNC_DECL tquat<T, P>
inverse(tquat<T, P>
const & q);
250 template <
typename T, precision P>
251 GLM_FUNC_DECL tquat<T, P>
rotate(tquat<T, P>
const & q, T
const &
angle, tvec3<T, P>
const &
axis);
257 template <
typename T, precision P>
258 GLM_FUNC_DECL tvec3<T, P>
eulerAngles(tquat<T, P>
const & x);
263 template <
typename T, precision P>
264 GLM_FUNC_DECL T
roll(tquat<T, P>
const & x);
269 template <
typename T, precision P>
270 GLM_FUNC_DECL T
pitch(tquat<T, P>
const & x);
275 template <
typename T, precision P>
276 GLM_FUNC_DECL T
yaw(tquat<T, P>
const & x);
281 template <
typename T, precision P>
282 GLM_FUNC_DECL tmat3x3<T, P>
mat3_cast(tquat<T, P>
const & x);
287 template <
typename T, precision P>
288 GLM_FUNC_DECL tmat4x4<T, P>
mat4_cast(tquat<T, P>
const & x);
293 template <
typename T, precision P>
294 GLM_FUNC_DECL tquat<T, P>
quat_cast(tmat3x3<T, P>
const & x);
299 template <
typename T, precision P>
300 GLM_FUNC_DECL tquat<T, P>
quat_cast(tmat4x4<T, P>
const & x);
305 template <
typename T, precision P>
306 GLM_FUNC_DECL T
angle(tquat<T, P>
const & x);
311 template <
typename T, precision P>
312 GLM_FUNC_DECL tvec3<T, P>
axis(tquat<T, P>
const & x);
320 template <
typename T, precision P>
328 template <
typename T, precision P>
329 GLM_FUNC_DECL tvec4<bool, P>
lessThan(tquat<T, P>
const & x, tquat<T, P>
const & y);
336 template <
typename T, precision P>
337 GLM_FUNC_DECL tvec4<bool, P>
lessThanEqual(tquat<T, P>
const & x, tquat<T, P>
const & y);
344 template <
typename T, precision P>
345 GLM_FUNC_DECL tvec4<bool, P>
greaterThan(tquat<T, P>
const & x, tquat<T, P>
const & y);
352 template <
typename T, precision P>
353 GLM_FUNC_DECL tvec4<bool, P>
greaterThanEqual(tquat<T, P>
const & x, tquat<T, P>
const & y);
360 template <
typename T, precision P>
361 GLM_FUNC_DECL tvec4<bool, P>
equal(tquat<T, P>
const & x, tquat<T, P>
const & y);
368 template <
typename T, precision P>
369 GLM_FUNC_DECL tvec4<bool, P>
notEqual(tquat<T, P>
const & x, tquat<T, P>
const & y);
380 template <
typename T, precision P>
381 GLM_FUNC_DECL tvec4<bool, P>
isnan(tquat<T, P>
const & x);
390 template <
typename T, precision P>
391 GLM_FUNC_DECL tvec4<bool, P>
isinf(tquat<T, P>
const & x);
396 #include "quaternion.inl"
GLM_FUNC_DECL T roll(tquat< T, P > const &x)
Returns roll value of euler angles expressed in radians.
GLM_FUNC_DECL T pitch(tquat< T, P > const &x)
Returns pitch value of euler angles expressed in radians.
GLM_FUNC_DECL tvec4< bool, P > equal(tquat< T, P > const &x, tquat< T, P > const &y)
Returns the component-wise comparison of result x == y.
GLM_FUNC_DECL tquat< T, P > rotate(tquat< T, P > const &q, T const &angle, tvec3< T, P > const &axis)
Rotates a quaternion from a vector of 3 components axis and an angle.
GLM_FUNC_DECL tvec4< bool, P > greaterThanEqual(tquat< T, P > const &x, tquat< T, P > const &y)
Returns the component-wise comparison of result x >= y.
GLM_FUNC_DECL tquat< T, P > quat_cast(tmat4x4< T, P > const &x)
Converts a 4 * 4 matrix to a quaternion.
GLM_FUNC_DECL tvec4< bool, P > isnan(tquat< T, P > const &x)
Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of...
GLM_FUNC_DECL tquat< T, P > conjugate(tquat< T, P > const &q)
Returns the q conjugate.
GLM_FUNC_DECL tvec4< bool, P > greaterThan(tquat< T, P > const &x, tquat< T, P > const &y)
Returns the component-wise comparison of result x > y.
GLM_FUNC_DECL tquat< T, P > lerp(tquat< T, P > const &x, tquat< T, P > const &y, T a)
Linear interpolation of two quaternions.
GLM_FUNC_DECL tmat4x4< T, P > mat4_cast(tquat< T, P > const &x)
Converts a quaternion to a 4 * 4 matrix.
GLM_FUNC_DECL tquat< T, P > normalize(tquat< T, P > const &q)
Returns the normalized quaternion.
GLM_FUNC_DECL T length(tquat< T, P > const &q)
Returns the length of the quaternion.
GLM_FUNC_DECL tvec3< T, P > axis(tquat< T, P > const &x)
Returns the q rotation axis.
GLM_FUNC_DECL T dot(quatType< T, P > const &x, quatType< T, P > const &y)
Returns dot product of q1 and q2, i.e., q1[0] * q2[0] + q1[1] * q2[1] + ...
GLM_FUNC_DECL tvec4< bool, P > lessThanEqual(tquat< T, P > const &x, tquat< T, P > const &y)
Returns the component-wise comparison of result x <= y.
GLM_FUNC_DECL tvec3< T, P > eulerAngles(tquat< T, P > const &x)
Returns euler angles, pitch as x, yaw as y, roll as z.
GLM_FUNC_DECL T angle(tquat< T, P > const &x)
Returns the quaternion rotation angle.
GLM_FUNC_DECL tquat< T, P > slerp(tquat< T, P > const &x, tquat< T, P > const &y, T a)
Spherical linear interpolation of two quaternions.
GLM_FUNC_DECL tvec4< bool, P > notEqual(tquat< T, P > const &x, tquat< T, P > const &y)
Returns the component-wise comparison of result x != y.
GLM_FUNC_DECL tmat3x3< T, P > mat3_cast(tquat< T, P > const &x)
Converts a quaternion to a 3 * 3 matrix.
GLM_FUNC_DECL tquat< T, P > angleAxis(T const &angle, tvec3< T, P > const &axis)
Build a quaternion from an angle and a normalized axis.
GLM_FUNC_DECL tvec4< bool, P > lessThan(tquat< T, P > const &x, tquat< T, P > const &y)
Returns the component-wise comparison result of x < y.
GLM_FUNC_DECL tvec4< bool, P > isinf(tquat< T, P > const &x)
Returns true if x holds a positive infinity or negative infinity representation in the underlying imp...
GLM_FUNC_DECL tquat< T, P > mix(tquat< T, P > const &x, tquat< T, P > const &y, T a)
Spherical linear interpolation of two quaternions.
GLM_FUNC_DECL tquat< T, P > inverse(tquat< T, P > const &q)
Returns the q inverse.
GLM_FUNC_DECL T yaw(tquat< T, P > const &x)
Returns yaw value of euler angles expressed in radians.