-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathTSMotor2D.h
397 lines (304 loc) · 11.6 KB
/
TSMotor2D.h
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
//
// 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.
//
#ifndef TSMotor2D_h
#define TSMotor2D_h
#include "TSRigid2D.h"
#include "TSMatrix3D.h"
#define TERATHON_MOTOR2D 1
namespace Terathon
{
struct ConstMotor2D;
// ==============================================
// Motor2D
// ==============================================
/// @brief Encapsulates a 2D motion operator (motor) in rigid geometric algebra.
///
/// The \c Motor2D class encapsulates a 2D motion operator (motor).
/// It has the general form <i>Q<sub>x</sub></i><b>e</b><sub>1</sub> + <i>Q<sub>y</sub></i><b>e</b><sub>2</sub> + <i>Q<sub>z</sub></i><b>e</b><sub>3</sub> + <i>Q<sub>w</sub></i>𝟙.
///
/// @sa Flector2D
class Motor2D
{
public:
float x, y, z, w;
TERATHON_API static const ConstMotor2D identity;
/// @brief Default constructor that leaves the components uninitialized.
inline Motor2D() = default;
/// @brief Constructor that sets components explicitly.
/// @param a,b,c,d The values of the <b>e</b><sub>1</sub>, <b>e</b><sub>2</sub>, <b>e</b><sub>3</sub>, and antiscalar coordinates.
Motor2D(float a, float b, float c, float d)
{
x = a;
y = b;
z = c;
w = d;
}
/// @brief Sets all four components of a 2D motor.
/// @param a,b,c,d The values of the <b>e</b><sub>1</sub>, <b>e</b><sub>2</sub>, <b>e</b><sub>3</sub>, and antiscalar coordinates.
Motor2D& Set(float a, float b, float c, float d)
{
x = a;
y = b;
z = c;
w = d;
return (*this);
}
void Set(float a, float b, float c, float d) volatile
{
x = a;
y = b;
z = c;
w = d;
}
Motor2D& operator =(const Motor2D& Q)
{
x = Q.x;
y = Q.y;
z = Q.z;
w = Q.w;
return (*this);
}
void operator =(const Motor2D& Q) volatile
{
x = Q.x;
y = Q.y;
z = Q.z;
w = Q.w;
}
Motor2D& operator +=(const Motor2D& Q)
{
x += Q.x;
y += Q.y;
z += Q.z;
w += Q.w;
return (*this);
}
Motor2D& operator -=(const Motor2D& Q)
{
x -= Q.x;
y -= Q.y;
z -= Q.z;
w -= Q.w;
return (*this);
}
Motor2D& operator *=(float n)
{
x *= n;
y *= n;
z *= n;
w *= n;
return (*this);
}
Motor2D& operator /=(float n)
{
n = 1.0F / n;
x *= n;
y *= n;
z *= n;
w *= n;
return (*this);
}
/// @brief Unitizes the weight of a 2D motor.
///
/// The \c Unitize() function multiplies a motor by the inverse magnitude of its weight, which is made up of its
/// <b>e</b><sub>3</sub> and antiscalar coordinates.
Motor2D& Unitize(void)
{
return (*this *= InverseSqrt(z * z + w * w));
}
/// @brief Returns a 2D motor that represents a rotation about a given center.
/// @param angle The angle of rotation, in radians.
/// @param center The center about which to rotate.
///
/// The \c MakeRotation() function returns a motor representing a rotation through the angle
/// given by the \c angle parameter about the center given by the \c center parameter.
/// The resulting motor is unitized.
static Motor2D MakeRotation(float angle, const Point2D& center)
{
Vector2D t = CosSin(angle * 0.5F);
return (Motor2D(center.x * t.y, center.y * t.y, t.y, t.x));
}
/// @brief Returns a 2D motor that represents a translation.
/// @param offset The offset vector.
///
/// The \c MakeTranslation() function returns a motor representing a translation by the
/// direction and magnitude given by the \c offset parameter.
static Motor2D MakeTranslation(const Vector2D& offset)
{
return (Motor2D(offset.y * -0.5F, offset.x * 0.5F, 0.0F, 1.0F));
}
/// @brief Returns the direction to which the <i>x</i> axis is transformed by a 2D motor.
///
/// The \c GetDirectionX() function calculates the 2D vector that results from transforming the direction vector
/// (1, 0) with the motor for which it is called.
TERATHON_API Vector2D GetDirectionX(void) const;
/// @brief Returns the direction to which the <i>y</i> axis is transformed by a 2D motor.
///
/// The \c GetDirectionY() function calculates the 2D vector that results from transforming the direction vector
/// (0, 1) with the motor for which it is called.
TERATHON_API Vector2D GetDirectionY(void) const;
/// @brief Returns the position to which the origin is transformed by a 2D motor.
///
/// The \c GetPosition() function calculates the 2D point that results from transforming the origin
/// with the motor for which it is called.
TERATHON_API Point2D GetPosition(void) const;
/// @brief Converts a 2D motor to its corresponding 3 × 3 matrix.
///
/// The \c GetTransformMatrix() function converts a motor to the Transform2D object that
/// represents the same transformation when it premultiplies a Vector2D or Point2D object.
TERATHON_API Transform2D GetTransformMatrix(void) const;
/// @brief Converts a 2D motor to the inverse of its corresponding 3 × 3 matrix.
///
/// The \c GetInverseTransformMatrix() function converts a motor to the inverse of the Transform2D object that
/// represents the same transformation when it premultiplies a Vector2D or Point2D object. Such a matrix
/// correctly transforms a Line2D object when it postmultiplies it.
///
/// This function performs the same amount of computation as the Motor2D::GetTransformMatrix() function, and is thus
/// significantly faster than calling the Motor2D::GetTransformMatrix() function and inverting the result.
TERATHON_API Transform2D GetInverseTransformMatrix(void) const;
/// @brief Converts a 2D motor to its corresponding 3 × 3 matrix and its inverse simultaneously.
/// @param M A pointer to the location where the transform matrix is returned.
/// @param Minv A pointer to the location where the inverse transform matrix is returned.
///
/// The \c GetTransformMatrices() function converts a motor to the Transform2D object that represents the same
/// transformation when it premultiplies a Vector2D or Point2D object and stores it in the location specified
/// by the \c M parameter. The inverse of this matrix is stored in the location specified by the \c Minv parameter.
///
/// Calling this function is much faster than making separate calls to the Motor2D::GetTransformMatrix() and
/// Motor2D::GetInverseTransformMatrix() functions.
TERATHON_API void GetTransformMatrices(Transform2D *M, Transform2D *Minv) const;
/// @brief Converts a 3 × 3 matrix to its corresponding 2D motor.
/// @param M The matrix to convert to a motor.
///
/// The \c SetTransformMatrix() function sets the components of a motor to values that represent
/// the same rigid motion as the one represented by the matrix specified by the \c M parameter.
///
/// This function expects the matrix \c M to have a determinant of +1, and it expects the upper-left 2 × 2
/// portion of the matrix to be orthogonal. If these conditions are not met, then the results are unlikely to be meaningful.
TERATHON_API Motor2D& SetTransformMatrix(const Transform2D& M);
};
/// @brief Returns the negation of the 2D motor \c Q.
/// @related Motor2D
inline Motor2D operator -(const Motor2D& Q)
{
return (Motor2D(-Q.x, -Q.y, -Q.z, -Q.w));
}
/// @brief Returns the product of the 2D motor \c Q and the scalar \c n.
/// @related Motor2D
inline Motor2D operator *(const Motor2D& Q, float n)
{
return (Motor2D(Q.x * n, Q.y * n, Q.z * n, Q.w * n));
}
/// @brief Returns the product of the 2D motor \c Q and the scalar \c n.
/// @related Motor2D
inline Motor2D operator *(float n, const Motor2D& Q)
{
return (Motor2D(n * Q.x, n * Q.y, n * Q.z, n * Q.w));
}
/// @brief Returns the product of the 2D motor \c Q and the inverse of the scalar \c n.
/// @related Motor2D
inline Motor2D operator /(const Motor2D& Q, float n)
{
n = 1.0F / n;
return (Motor2D(Q.x * n, Q.y * n, Q.z * n, Q.w * n));
}
/// @brief Returns a boolean value indicating whether the two 2D motors \c a and \c b are equal.
/// @related Motor2D
inline bool operator ==(const Motor2D& a, const Motor2D& b)
{
return ((a.x == b.x) && (a.y == b.y) && (a.z == b.z) && (a.w == b.w));
}
/// @brief Returns a boolean value indicating whether the two 2D motors \c a and \c b are not equal.
/// @related Motor2D
inline bool operator !=(const Motor2D& a, const Motor2D& b)
{
return ((a.x != b.x) || (a.y != b.y) || (a.z != b.z) || (a.w != b.w));
}
// ==============================================
// Multiplication
// ==============================================
/// @brief Returns the geometric antiproduct of the 3D motors \c a and \c b.
/// @relatedalso Motor3D
TERATHON_API Motor2D operator *(const Motor2D& a, const Motor2D& b);
// ==============================================
// Transformations
// ==============================================
/// @brief Transforms the 2D vector \c v with the motor \c Q.
/// @relatedalso Motor2D
TERATHON_API Vector2D Transform(const Vector2D& v, const Motor2D& Q);
/// @brief Transforms the 2D flat point \c p with the motor \c Q.
/// @relatedalso Motor2D
TERATHON_API FlatPoint2D Transform(const FlatPoint2D& p, const Motor2D& Q);
/// @brief Transforms the 2D Euclidean point \c p with the motor \c Q.
/// @relatedalso Motor2D
TERATHON_API Point2D Transform(const Point2D& p, const Motor2D& Q);
/// @brief Transforms the 2D line \c g with the motor \c Q.
/// @relatedalso Motor2D
TERATHON_API Line2D Transform(const Line2D& g, const Motor2D& Q);
// ==============================================
// Reverses
// ==============================================
/// @brief Returns the reverse of the 2D motor \c Q.
/// @relatedalso Motor2D
inline Motor2D Reverse(const Motor2D& Q)
{
return (Motor2D(Q.x, Q.y, Q.z, -Q.w));
}
/// @brief Returns the antireverse of the 2D motor \c Q.
/// @relatedalso Motor2D
inline Motor2D Antireverse(const Motor2D& Q)
{
return (Motor2D(-Q.x, -Q.y, -Q.z, Q.w));
}
inline Motor2D operator ~(const Motor2D& Q) {return (Antireverse(Q));}
// ==============================================
// Norms
// ==============================================
/// @brief Returns the squared bulk norm of the 2D motor \c Q.
/// @relatedalso Motor2D
inline float SquaredBulkNorm(const Motor2D& Q)
{
return (Q.x * Q.x + Q.y * Q.y);
}
/// @brief Returns the squared weight norm of the 2D motor \c Q.
/// @relatedalso Motor2D
inline float SquaredWeightNorm(const Motor2D& Q)
{
return (Q.z * Q.z + Q.w * Q.w);
}
/// @brief Calculates the unitized equivalent of a 2D motor.
///
/// The \c Unitize() function multiplies a 2D motor by the inverse magnitude of its weight, which is made up of its
/// <b>e</b><sub>3</sub> and antiscalar coordinates.
///
/// @relatedalso Motor2D
inline Motor2D Unitize(const Motor2D& Q)
{
return (Q * InverseSqrt(Q.z * Q.z + Q.w * Q.w));
}
// ==============================================
// POD Structures
// ==============================================
struct ConstMotor2D
{
float x, y, z, w;
operator const Motor2D&(void) const
{
return (reinterpret_cast<const Motor2D&>(*this));
}
const Motor2D *operator &(void) const
{
return (reinterpret_cast<const Motor2D *>(this));
}
const Motor2D *operator ->(void) const
{
return (reinterpret_cast<const Motor2D *>(this));
}
};
}
#endif