quaternion.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Mark Page
27 */
28 
29 #pragma once
30 
31 #include "vec3.h"
32 #include "angle.h"
33 
34 namespace uicore
35 {
39  template<typename Type>
40  class Quaternionx
41  {
42  public:
44  Type x = Type(0);
45  Type y = Type(0);
46  Type z = Type(0);
47 
49  Type w = Type(1);
50 
53  Quaternionx(const Quaternionx &other) : x(other.x), y(other.y), z(other.z), w(other.w) { }
54  Quaternionx(Type x, Type y, Type z, Type w) : x(x), y(y), z(z), w(w) { }
55  Quaternionx(const Vec4<Type> &quat) : x(quat.x), y(quat.y), z(quat.z), w(quat.w) { }
56  explicit Quaternionx(const Mat4<Type> &rotation_matrix);
57 
58  static Quaternionx<Type> euler(Type x, Type y, Type z, EulerOrder order = EulerOrder::yxz);
60  static Quaternionx<Type> axis_angle(Type angle, const Vec3f &axis);
61 
62  static Quaternionx<Type> multiply(const Quaternionx<Type> &quaternion_1, const Quaternionx<Type> &quaternion_2);
63 
66 
69 
75  static Quaternionx<Type> lerp(const Quaternionx<Type> &quaternion_initial, const Quaternionx<Type> &quaternion_final, Type lerp_time);
76 
82  static Quaternionx<Type> slerp(const Quaternionx<Type> &quaternion_initial, const Quaternionx<Type> &quaternion_final, Type slerp_time);
83 
87  Mat4<Type> to_matrix() const;
88 
90  Vec4<Type> to_vec4() const { return Vec4<Type>(x, y, z, w); }
91 
93  Type magnitude() const;
94 
95  Quaternionx<Type> &rotate(Type angle, const Vec3f &axis);
96 
97  Quaternionx<Type> &rotate(Type euler_x, Type euler_y, Type euler_z, EulerOrder order);
98 
103 
110 
116  Vec3<Type> rotate_vector(const Vec3<Type> &v) const;
117 
118  Vec4<Type> rotate_vector(const Vec4<Type> &v) const;
119 
123  static Quaternionx<Type> normalize(Quaternionx<Type> q) { return q.normalize(); }
124 
130  static Quaternionx<Type> inverse(Quaternionx<Type> q) { return q.inverse(); }
131 
132  operator Vec4<Type>() const { return to_vec4(); }
133 
135  Quaternionx<Type> operator *(const Quaternionx<Type> &mult) const { return Quaternionx<Type>::multiply(*this, mult); }
136 
137  Quaternionx<Type> operator *(const Mat4<Type> &matrix) const;
138 
139  Vec3<Type> operator *(const Vec3<Type> &v) const { return rotate_vector(v); }
140  Vec4<Type> operator *(const Vec4<Type> &v) const { return rotate_vector(v); }
141 
143  bool operator<(const Quaternionx<Type> &other) const
144  {
145  if (x != other.x) return x < other.x;
146  else if (y != other.y) return y < other.y;
147  else if (z != other.z) return z < other.z;
148  else return w < other.w;
149  }
150 
152  bool operator>(const Quaternionx<Type> &other) const
153  {
154  if (x != other.x) return x > other.x;
155  else if (y != other.y) return y > other.y;
156  else if (z != other.z) return z > other.z;
157  else return w > other.w;
158  }
159 
161  bool operator<=(const Quaternionx<Type> &other) const { return *this < other || *this == other; }
162 
164  bool operator>=(const Quaternionx<Type> &other) const { return *this > other || *this == other; }
165 
167  bool operator==(const Quaternionx<Type> &other) const { return x == other.x && y == other.y && z == other.z && w == other.w; }
168 
170  bool operator!=(const Quaternionx<Type> &other) const { return x != other.x || y != other.y || z != other.z || w == other.w; }
171  };
172 
175 }
Quaternionx< Type > operator*(const Quaternionx< Type > &mult) const
Multiplication operator.
Definition: quaternion.h:135
Quaternionx< Type > & inverse()
Inverse this quaternion.
Vec4< Type > to_vec4() const
Return quaternion as a vector.
Definition: quaternion.h:90
static Quaternionx< Type > lerp(const Quaternionx< Type > &quaternion_initial, const Quaternionx< Type > &quaternion_final, Type lerp_time)
Linear Quaternion Interpolation.
static Quaternionx< Type > euler(Type x, Type y, Type z, EulerOrder order=EulerOrder::yxz)
static Quaternionx< Type > inverse(Quaternionx< Type > q)
Inverse this quaternion.
Definition: quaternion.h:130
Type x
The imaginary vector part.
Definition: quaternion.h:44
Type w
The real scalar part.
Definition: quaternion.h:49
3D vector
Definition: line_ray.h:43
Quaternionx< double > Quaterniond
Definition: quaternion.h:174
Quaternionx()
Constructs a quaternion.
Definition: quaternion.h:52
static Quaternionx< Type > normalize(Quaternionx< Type > q)
Normalizes this quaternion.
Definition: quaternion.h:123
Quaternionx< Type > & normalize()
Normalizes this quaternion.
Type z
Definition: quaternion.h:46
Quaternionx(Type x, Type y, Type z, Type w)
Definition: quaternion.h:54
bool operator>=(const Quaternionx< Type > &other) const
Greater equal operator.
Definition: quaternion.h:164
static Quaternionx< Type > rotation_between(Vec3< Type > v0, Vec3< Type > v1)
Calculates the shortest arc quaternion between two vectors.
Type y
Definition: quaternion.h:45
Type magnitude() const
Get the quaternion magnitude.
static Quaternionx< Type > axis_angle(Type angle, const Vec3f &axis)
bool operator==(const Quaternionx< Type > &other) const
Equal operator.
Definition: quaternion.h:167
Vec3< Type > rotate_vector(const Vec3< Type > &v) const
Rotates vector by this quaternion.
Quaternion.
Definition: mat4.h:66
Quaternionx(const Quaternionx &other)
Definition: quaternion.h:53
EulerOrder
Euler angle rotation order.
Definition: angle.h:40
Quaternionx< float > Quaternionf
Definition: quaternion.h:173
static Quaternionx< Type > multiply(const Quaternionx< Type > &quaternion_1, const Quaternionx< Type > &quaternion_2)
bool operator!=(const Quaternionx< Type > &other) const
Not equal operator.
Definition: quaternion.h:170
bool operator>(const Quaternionx< Type > &other) const
Greater operator.
Definition: quaternion.h:152
Quaternionx(const Vec4< Type > &quat)
Definition: quaternion.h:55
static Quaternionx< Type > slerp(const Quaternionx< Type > &quaternion_initial, const Quaternionx< Type > &quaternion_final, Type slerp_time)
Spherical Quaternion Interpolation.
Definition: Application/application.h:35
Quaternionx< Type > & rotate(Type angle, const Vec3f &axis)
4D matrix
Definition: mat2.h:47
4D vector
Definition: size.h:44
Mat4< Type > to_matrix() const
Convert the quaternion to a rotation matrix.