-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathTSQuaternion.cpp
142 lines (112 loc) · 3.44 KB
/
TSQuaternion.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
//
// This file is part of the Terathon Math Library, by Eric Lengyel.
// Copyright 1999-2024, Terathon Software LLC
//
// This software is distributed under the MIT License.
// Separate proprietary licenses are available from Terathon Software.
//
#include "TSQuaternion.h"
using namespace Terathon;
const ConstQuaternion Quaternion::identity = {0.0F, 0.0F, 0.0F, 1.0F};
Quaternion& Quaternion::operator *=(const Quaternion& q)
{
float a = w * q.x + x * q.w + y * q.z - z * q.y;
float b = w * q.y - x * q.z + y * q.w + z * q.x;
float c = w * q.z + x * q.y - y * q.x + z * q.w;
w = w * q.w - x * q.x - y * q.y - z * q.z;
xyz.Set(a, b, c);
return (*this);
}
Quaternion& Quaternion::operator *=(const Bivector3D& v)
{
float a = w * v.x + y * v.z - z * v.y;
float b = w * v.y - x * v.z + z * v.x;
float c = w * v.z + x * v.y - y * v.x;
w = -x * v.x - y * v.y - z * v.z;
xyz.Set(a, b, c);
return (*this);
}
Matrix3D Quaternion::GetRotationMatrix(void) const
{
// See FGED1, Section 2.7.
float x2 = x * x;
float y2 = y * y;
float z2 = z * z;
float xy = x * y;
float zx = z * x;
float yz = y * z;
float wx = w * x;
float wy = w * y;
float wz = w * z;
return (Matrix3D(1.0F - 2.0F * (y2 + z2), 2.0F * (xy - wz), 2.0F * (zx + wy),
2.0F * (xy + wz), 1.0F - 2.0F * (x2 + z2), 2.0F * (yz - wx),
2.0F * (zx - wy), 2.0F * (yz + wx), 1.0F - 2.0F * (x2 + y2)));
}
template <class matrix>
Quaternion& Quaternion::SetRotationMatrix(const matrix& M)
{
// See FGED1, Section 2.7.
float m00 = M(0,0);
float m11 = M(1,1);
float m22 = M(2,2);
float sum = m00 + m11 + m22;
if (sum > 0.0F)
{
w = Sqrt(sum + 1.0F) * 0.5F;
float f = 0.25F / w;
x = (M(2,1) - M(1,2)) * f;
y = (M(0,2) - M(2,0)) * f;
z = (M(1,0) - M(0,1)) * f;
}
else if ((m00 > m11) && (m00 > m22))
{
x = Sqrt(m00 - m11 - m22 + 1.0F) * 0.5F;
float f = 0.25F / x;
y = (M(1,0) + M(0,1)) * f;
z = (M(0,2) + M(2,0)) * f;
w = (M(2,1) - M(1,2)) * f;
}
else if (m11 > m22)
{
y = Sqrt(m11 - m22 - m00 + 1.0F) * 0.5F;
float f = 0.25F / y;
x = (M(1,0) + M(0,1)) * f;
z = (M(2,1) + M(1,2)) * f;
w = (M(0,2) - M(2,0)) * f;
}
else
{
z = Sqrt(m22 - m00 - m11 + 1.0F) * 0.5F;
float f = 0.25F / z;
x = (M(0,2) + M(2,0)) * f;
y = (M(2,1) + M(1,2)) * f;
w = (M(1,0) - M(0,1)) * f;
}
return (*this);
}
template TERATHON_API Quaternion& Quaternion::SetRotationMatrix(const Matrix3D& M);
template TERATHON_API Quaternion& Quaternion::SetRotationMatrix(const Transform3D& M);
Quaternion Terathon::operator *(const Quaternion& q1, const Quaternion& q2)
{
return (Quaternion(q1.w * q2.x + q1.x * q2.w + q1.y * q2.z - q1.z * q2.y,
q1.w * q2.y - q1.x * q2.z + q1.y * q2.w + q1.z * q2.x,
q1.w * q2.z + q1.x * q2.y - q1.y * q2.x + q1.z * q2.w,
q1.w * q2.w - q1.x * q2.x - q1.y * q2.y - q1.z * q2.z));
}
Quaternion Terathon::operator *(const Quaternion& q, const Bivector3D& v)
{
return (Quaternion(q.w * v.x + q.y * v.z - q.z * v.y,
q.w * v.y - q.x * v.z + q.z * v.x,
q.w * v.z + q.x * v.y - q.y * v.x,
-q.x * v.x - q.y * v.y - q.z * v.z));
}
Quaternion Terathon::Sqrt(const Quaternion& q)
{
float f = InverseSqrt(q.w * 2.0F + 2.0F);
return (Quaternion(q.x * f, q.y * f, q.z * f, q.w * f + f));
}
Vector3D Terathon::Transform(const Vector3D& v, const Quaternion& q)
{
Bivector3D u = (!q.xyz ^ v) * 2.0F;
return ((q.xyz ^ u) + !u * q.w + v);
}