3#include "egg/math/Math.hh"
4#include "egg/math/Vector.hh"
14 constexpr Quatf() : w(std::numeric_limits<f32>::signaling_NaN()) {}
16 constexpr Quatf() =
default;
19 constexpr Quatf(f32 w_, f32 x_, f32 y_, f32 z_) : v(x_, y_, z_), w(w_) {}
29 [[nodiscard]]
Quatf operator+(
const Quatf &rhs)
const {
30 return Quatf(w + rhs.w, v + rhs.v);
34 return *
this = *
this + rhs;
40 return Quatf(-v.
dot(vec), cross + scale);
43 [[nodiscard]]
Quatf operator*(f32 scalar)
const {
44 return Quatf(w * scalar, v * scalar);
47 Quatf &operator*=(f32 scalar) {
48 return *
this = *
this * scalar;
54 f32 _w = w * rhs.w - v.x * rhs.v.x - v.y * rhs.v.y - v.z * rhs.v.z;
55 f32 _x = v.y * rhs.v.z + (v.x * rhs.w + w * rhs.v.x) - v.z * rhs.v.y;
56 f32 _y = v.z * rhs.v.x + (v.y * rhs.w + w * rhs.v.y) - v.x * rhs.v.z;
57 f32 _z = v.x * rhs.v.y + (v.z * rhs.w + w * rhs.v.z) - v.y * rhs.v.x;
59 return Quatf(_w, _x, _y, _z);
63 return *
this = *
this * q;
66 bool operator==(
const Quatf &rhs)
const {
67 return w == rhs.w && v == rhs.v;
70 bool operator!=(
const Quatf &rhs)
const {
71 return !(*
this == rhs);
75 explicit operator std::string()
const {
76 return std::format(
"[0x{:08X}, 0x{:08X}, 0x{:08X}, 0x{:08X}] | [{}, {}, {}, {}]", f2u(v.x),
77 f2u(v.y), f2u(v.z), f2u(w), v.x, v.y, v.z, w);
106 return w * q.w + v.
dot(q.v);
113 void read(
Stream &stream);
118 static const Quatf ident;
A stream of data, abstracted to allow for continuous seeking.
A quaternion, used to represent 3D rotation.
void normalise()
Scales the quaternion to a unit length.
Quatf operator*(const Quatf &rhs) const
Vector3f rotateVector(const Vector3f &vec) const
Rotates a vector based on the quat.
f32 squaredNorm() const
Computes .
Quatf slerpTo(const Quatf &q2, f32 t) const
Performs spherical linear interpolation.
void setAxisRotation(f32 angle, const Vector3f &axis)
Set the quat given angle and axis.
f32 dot(const Quatf &q) const
Computes .
Vector3f rotateVectorInv(const Vector3f &vec) const
Rotates a vector on the inverse quat.
void setRPY(const Vector3f &rpy)
Sets roll, pitch, and yaw.
Quatf conjugate() const
Computes .
void makeVectorRotation(const Vector3f &from, const Vector3f &to)
Captures rotation between two vectors.
f32 dot(const Vector3f &rhs) const
The dot product between two vectors.
f32 squaredLength() const
The dot product between the vector and itself.