-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathTSMotor2D.cpp
117 lines (93 loc) · 3.04 KB
/
TSMotor2D.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
//
// 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 "TSMotor2D.h"
using namespace Terathon;
const ConstMotor2D Motor2D::identity = {0.0F, 0.0F, 0.0F, 1.0F};
Vector2D Motor2D::GetDirectionX(void) const
{
return (Vector2D(1.0F - z * z * 2.0F, z * w * 2.0F));
}
Vector2D Motor2D::GetDirectionY(void) const
{
return (Vector2D(z * w * -2.0F, 1.0F - z * z * 2.0F));
}
Point2D Motor2D::GetPosition(void) const
{
return (Point2D((x * z + y * w) * 2.0F, (y * z - x * w) * 2.0F));
}
Transform2D Motor2D::GetTransformMatrix(void) const
{
return (Transform2D(1.0F - z * z * 2.0F, z * w * -2.0F, (x * z + y * w) * 2.0F,
z * w * 2.0F, 1.0F - z * z * 2.0F, (y * z - x * w) * 2.0F));
}
Transform2D Motor2D::GetInverseTransformMatrix(void) const
{
return (Transform2D(1.0F - z * z * 2.0F, z * w * 2.0F, (x * z - y * w) * 2.0F,
z * w * -2.0F, 1.0F - z * z * 2.0F, (y * z + x * w) * 2.0F));
}
void Motor2D::GetTransformMatrices(Transform2D *M, Transform2D *Minv) const
{
float xz = x * z * 2.0F;
float yz = y * z * 2.0F;
float xw = x * w * 2.0F;
float yw = y * w * 2.0F;
float zw = z * w * 2.0F;
float z2 = 1.0F - z * z * 2.0F;
M->Set(z2, -zw, xz + yw, zw, z2, yz - xw);
Minv->Set(z2, zw, xz - yw, -zw, z2, yz + xw);
}
Motor2D& Motor2D::SetTransformMatrix(const Transform2D& M)
{
float m00 = M(0,0);
if (m00 < 1.0F)
{
z = Sqrt(0.5F - m00 * 0.5F);
w = M(1,0) * 0.5F / z;
float m02 = M(0,2) * 0.5F;
float m12 = M(1,2) * 0.5F;
x = z * m02 - w * m12;
y = w * m02 + z * m12;
}
else
{
x = M(1,2) * -0.5F;
y = M(0,2) * 0.5F;
z = 0.0F;
w = 1.0F;
}
return (*this);
}
Motor2D Terathon::operator *(const Motor2D& a, const Motor2D& b)
{
return (Motor2D(a.x * b.w + b.x * a.w + a.y * b.z - a.z * b.y, a.y * b.w + b.y * a.w + a.z * b.x - a.x * b.z, a.z * b.w + a.w * b.z, a.w * b.w - a.z * b.z));
}
Vector2D Terathon::Transform(const Vector2D& v, const Motor2D& Q)
{
float z2 = 1.0F - Q.z * Q.z * 2.0F;
float zw = Q.z * Q.w * 2.0F;
return (Vector2D(v.x * z2 - v.y * zw, v.y * z2 + v.x * zw));
}
FlatPoint2D Terathon::Transform(const FlatPoint2D& p, const Motor2D& Q)
{
float z2 = 1.0F - Q.z * Q.z * 2.0F;
float zw = Q.z * Q.w * 2.0F;
float pz = p.z * 2.0F;
return (FlatPoint2D(p.x * z2 - p.y * zw + (Q.x * Q.z + Q.y * Q.w) * pz, p.y * z2 + p.x * zw + (Q.y * Q.z - Q.x * Q.w) * pz, p.z));
}
Point2D Terathon::Transform(const Point2D& p, const Motor2D& Q)
{
float z2 = 1.0F - Q.z * Q.z * 2.0F;
float zw = Q.z * Q.w * 2.0F;
return (Point2D(p.x * z2 - p.y * zw + (Q.x * Q.z + Q.y * Q.w) * 2.0F, p.y * z2 + p.x * zw + (Q.y * Q.z - Q.x * Q.w) * 2.0F));
}
Line2D Terathon::Transform(const Line2D& g, const Motor2D& Q)
{
float z2 = 1.0F - Q.z * Q.z * 2.0F;
float zw = Q.z * Q.w * 2.0F;
return (Line2D(g.x * z2 - g.y * zw, g.y * z2 + g.x * zw, g.z + ((Q.x * Q.z - Q.y * Q.w) * g.x + (Q.y * Q.z + Q.x * Q.w) * g.y) * 2.0F));
}