39 template<
typename Type>
54 Quaternionx(Type x, Type y, Type z, Type w) : x(x), y(y), z(z), w(w) { }
143 bool operator<(const Quaternionx<Type> &other)
const
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;
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;
161 bool operator<=(const Quaternionx<Type> &other)
const {
return *
this < other || *
this == other; }
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.