A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Quat.cc
1#include "Quat.hh"
2
3namespace EGG {
4
7void Quatf::setRPY(const Vector3f &rpy) {
8 const f32 cz = Mathf::cos(rpy.z * 0.5f);
9 const f32 cy = Mathf::cos(rpy.y * 0.5f);
10 const f32 cx = Mathf::cos(rpy.x * 0.5f);
11 const f32 sz = Mathf::sin(rpy.z * 0.5f);
12 const f32 sy = Mathf::sin(rpy.y * 0.5f);
13 const f32 sx = Mathf::sin(rpy.x * 0.5f);
14
15 w = cz * cy * cx + sz * sy * sx;
16 v.x = cz * cy * sx - sz * sy * cx;
17 v.y = cz * sy * cx + sz * cy * sx;
18 v.z = sz * cy * cx - cz * sy * sx;
19}
20
24 f32 len = squaredNorm() > std::numeric_limits<f32>::epsilon() ? norm() : 0.0f;
25
26 if (len != 0.0f) {
27 f32 inv = 1.0f / len;
28 w *= inv;
29 v *= inv;
30 }
31}
32
35void Quatf::makeVectorRotation(const Vector3f &from, const Vector3f &to) {
36 f32 t0 = std::max(0.0f, (from.dot(to) + 1) * 2.0f);
37 t0 = Mathf::sqrt(t0);
38
39 if (t0 <= std::numeric_limits<f32>::epsilon()) {
40 *this = Quatf::ident;
41 } else {
42 const f32 inv = 1.0f / t0;
43 w = t0 * 0.5f;
44 v = from.cross(to) * inv;
45 }
46}
47
51 Quatf conj = conjugate();
52 Quatf res = *this * vec;
53 Quatf ret;
54
55 ret.v.x = (res.v.y * conj.v.z + (res.v.x * conj.w + res.w * conj.v.x)) - res.v.z * conj.v.y;
56 ret.v.y = (res.v.z * conj.v.x + (res.v.y * conj.w + res.w * conj.v.y)) - res.v.x * conj.v.z;
57 ret.v.z = (res.v.x * conj.v.y + (res.v.z * conj.w + res.w * conj.v.z)) - res.v.y * conj.v.x;
58
59 return ret.v;
60}
61
65 Quatf conj = conjugate();
66 Quatf res = conj * vec;
67 Quatf ret;
68
69 ret.v.x = (res.v.y * v.z + (res.v.x * w + res.w * v.x)) - res.v.z * v.y;
70 ret.v.y = (res.v.z * v.x + (res.v.y * w + res.w * v.y)) - res.v.x * v.z;
71 ret.v.z = (res.v.x * v.y + (res.v.z * w + res.w * v.z)) - res.v.y * v.x;
72
73 return ret.v;
74}
75
79Quatf Quatf::slerpTo(const Quatf &q1, f32 t) const {
80 f32 dot_ = std::max(-1.0f, std::min(1.0f, dot(q1)));
81 bool bDot = dot_ < 0.0f;
82 dot_ = Mathf::abs(dot_);
83
84 f32 acos = Mathf::acos(dot_);
85 f32 sin = Mathf::sin(acos);
86
87 f32 s;
88 if (Mathf::abs(sin) < 0.00001f) {
89 s = 1.0f - t;
90 } else {
91 f32 invSin = 1.0f / sin;
92 f32 tmp0 = t * acos;
93 s = invSin * Mathf::sin(acos - tmp0);
94 t = invSin * Mathf::sin(tmp0);
95 }
96
97 if (bDot) {
98 t = -t;
99 }
100
101 return Quatf(s * w + t * q1.w, s * v + t * q1.v);
102}
103
106void Quatf::setAxisRotation(f32 angle, const EGG::Vector3f &axis) {
107 const f32 half_angle = angle * 0.5f;
108 const f32 c = Mathf::cos(half_angle);
109 const f32 s = Mathf::sin(half_angle);
110
111 w = c;
112 v = axis * s;
113}
114
115Quatf Quatf::multSwap(const Vector3f &vec) const {
116 f32 _w = -(v.dot(vec));
117 f32 _x = (w * vec.x + v.y * vec.z) - v.z * vec.y;
118 f32 _y = (w * vec.y + v.z * vec.x) - v.x * vec.z;
119 f32 _z = (w * vec.z + v.x * vec.y) - v.y * vec.x;
120
121 return Quatf(_w, _x, _y, _z);
122}
123
124Quatf Quatf::multSwap(const Quatf &q) const {
125 f32 _w = ((w * q.w - v.x * q.v.x) - v.y * q.v.y) - v.z * q.v.z;
126 f32 _x = (v.y * q.v.z + (v.x * q.w + w * q.v.x)) - v.z * q.v.y;
127 f32 _y = (v.z * q.v.x + (v.y * q.w + w * q.v.y)) - v.x * q.v.z;
128 f32 _z = (v.x * q.v.y + (v.z * q.w + w * q.v.z)) - v.y * q.v.x;
129
130 return Quatf(_w, _x, _y, _z);
131}
132
133void Quatf::read(Stream &stream) {
134 v.read(stream);
135 w = stream.read_f32();
136}
137
138const Quatf Quatf::ident = Quatf(1.0f, Vector3f::zero);
139
140} // namespace EGG
static f32 sin(f32 x)
Definition Math.hh:32
static f32 cos(f32 x)
Definition Math.hh:38
EGG core library.
Definition Archive.cc:6
A quaternion, used to represent 3D rotation.
Definition Quat.hh:12
void normalise()
Scales the quaternion to a unit length.
Definition Quat.cc:23
Vector3f rotateVector(const Vector3f &vec) const
Rotates a vector based on the quat.
Definition Quat.cc:50
f32 squaredNorm() const
Computes .
Definition Quat.hh:95
Quatf slerpTo(const Quatf &q2, f32 t) const
Performs spherical linear interpolation.
Definition Quat.cc:79
void setAxisRotation(f32 angle, const Vector3f &axis)
Set the quat given angle and axis.
Definition Quat.cc:106
f32 dot(const Quatf &q) const
Computes .
Definition Quat.hh:105
Vector3f rotateVectorInv(const Vector3f &vec) const
Rotates a vector on the inverse quat.
Definition Quat.cc:64
void setRPY(const Vector3f &rpy)
Sets roll, pitch, and yaw.
Definition Quat.cc:7
Quatf conjugate() const
Computes .
Definition Quat.hh:85
void makeVectorRotation(const Vector3f &from, const Vector3f &to)
Captures rotation between two vectors.
Definition Quat.cc:35
A 3D float vector.
Definition Vector.hh:83
f32 dot(const Vector3f &rhs) const
The dot product between two vectors.
Definition Vector.hh:182
void read(Stream &stream)
Initializes a Vector3f by reading 12 bytes from the stream.
Definition Vector.cc:115