-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathTSFlector2D.h
353 lines (267 loc) · 10.7 KB
/
TSFlector2D.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
//
// 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 TSFlector2D_h
#define TSFlector2D_h
#include "TSMotor2D.h"
#define TERATHON_FLECTOR2D 1
namespace Terathon
{
struct ConstFlector2D;
// ==============================================
// Flector2D
// ==============================================
/// @brief Encapsulates a 2D reflection operator (flector) in rigid geometric algebra.
///
/// The \c Flector2D class encapsulates a 2D reflection operator (flector).
/// It has the general form <i>F<sub>x</sub></i><b>e</b><sub>23</sub> + <i>F<sub>y</sub></i><b>e</b><sub>31</sub> + <i>F<sub>z</sub></i><b>e</b><sub>12</sub> + <i>F<sub>w</sub></i><b>1</b>.
///
/// @sa Motor2D
class Flector2D
{
public:
float x, y, z, w;
/// @brief Default constructor that leaves the components uninitialized.
inline Flector2D() = default;
/// @brief Constructor that sets components explicitly.
/// @param a,b,c,d The values of the <b>e</b><sub>23</sub>, <b>e</b><sub>31</sub>, <b>e</b><sub>12</sub>, and scalar coordinates.
Flector2D(float a, float b, float c, float d)
{
x = a;
y = b;
z = c;
w = d;
}
/// @brief Sets all four components of a 3D flector.
/// @param a,b,c,d The values of the <b>e</b><sub>23</sub>, <b>e</b><sub>31</sub>, <b>e</b><sub>12</sub>, and scalar coordinates.
Flector2D& 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;
}
Flector2D& operator =(const Flector2D& F)
{
x = F.x;
y = F.y;
z = F.z;
w = F.w;
return (*this);
}
void operator =(const Flector2D& F) volatile
{
x = F.x;
y = F.y;
z = F.z;
w = F.w;
}
Flector2D& operator *=(float n)
{
x *= n;
y *= n;
z *= n;
w *= n;
return (*this);
}
Flector2D& operator /=(float n)
{
n = 1.0F / n;
x *= n;
y *= n;
z *= n;
w *= n;
return (*this);
}
/// @brief Unitizes the weight of a 2D flector.
///
/// The \c Unitize() function multiplies a flector by the inverse magnitude of its weight, which is made up of its
/// <b>e</b><sub>23</sub> and <b>e</b><sub>31</sub> coordinates. If these coordinates are all zero, then the result is undefined.
Flector2D& Unitize(void)
{
return (*this *= InverseSqrt(x * x + y * y));
}
/// @brief Returns a 2D flector that represents a translation and reflection.
/// @param offset The translation vector.
/// @param line The unitized reflection line.
///
/// The \c MakeTransflection() function returns a flector representing a translation by the vector given
/// by the \c offset parameter and a reflection through the line given by the \c line parameter.
/// The resulting flector is unitized.
static Flector2D MakeTransflection(const Vector2D& offset, const Line2D& line)
{
return (Flector2D(line.x, line.y, (offset.x * line.x + offset.y * line.y) * 0.5F + line.z, (offset.y * line.x - offset.x * line.y) * 0.5F));
}
/// @brief Converts a 2D flector to its corresponding 3 × 3 matrix.
///
/// The \c GetTransformMatrix() function converts a flector 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 flector to the inverse of its corresponding 3 × 3 matrix.
///
/// The \c GetInverseTransformMatrix() function converts a flector 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 Flector2D::GetTransformMatrix() function, and is thus
/// significantly faster than calling the Flector2D::GetTransformMatrix() function and inverting the result.
TERATHON_API Transform2D GetInverseTransformMatrix(void) const;
/// @brief Converts a 2D flector 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 flector 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 Flector2D::GetTransformMatrix() and
/// Flector2D::GetInverseTransformMatrix() functions.
TERATHON_API void GetTransformMatrices(Transform2D *M, Transform2D *Minv) const;
/// @brief Converts a 3 × 3 matrix to its corresponding 2D flector.
/// @param M The matrix to convert to a flector.
///
/// The \c SetTransformMatrix() function sets the components of a flector 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 Flector2D& SetTransformMatrix(const Transform2D& M);
};
/// @brief Returns the negation of the 2D flector \c F.
/// @related Flector2D
inline Flector2D operator -(const Flector2D& F)
{
return (Flector2D(-F.x, -F.y, -F.z, -F.w));
}
/// @brief Returns the product of the 2D flector \c F and the scalar \c n.
/// @related Flector2D
inline Flector2D operator *(const Flector2D& F, float n)
{
return (Flector2D(F.x * n, F.y * n, F.z * n, F.w * n));
}
/// @brief Returns the product of the 2D flector \c F and the scalar \c n.
/// @related Flector2D
inline Flector2D operator *(float n, const Flector2D& F)
{
return (Flector2D(n * F.x, n * F.y, n * F.z, n * F.w));
}
/// @brief Returns the product of the 2D flector \c F and the inverse of the scalar \c n.
/// @related Flector2D
inline Flector2D operator /(const Flector2D& F, float n)
{
n = 1.0F / n;
return (Flector2D(F.x * n, F.y * n, F.z * n, F.w * n));
}
/// @brief Returns a boolean value indicating whether the two 2D flectors \c a and \c b are equal.
/// @related Flector2D
inline bool operator ==(const Flector2D& a, const Flector2D& 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 flectors \c a and \c b are not equal.
/// @related Flector2D
inline bool operator !=(const Flector2D& a, const Flector2D& 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 2D flectors \c a and \c b.
/// @relatedalso Flector2D
TERATHON_API Motor2D operator *(const Flector2D& a, const Flector2D& b);
/// @brief Returns the geometric antiproduct of the 2D flector \c a and the 2D motor \c b.
/// @relatedalso Flector2D
TERATHON_API Flector2D operator *(const Flector2D& a, const Motor2D& b);
/// @brief Returns the geometric antiproduct of the 2D motor \c a and the 2D flector \c b.
/// @relatedalso Flector2D
TERATHON_API Flector2D operator *(const Motor2D& a, const Flector2D& b);
// ==============================================
// Transformations
// ==============================================
/// @brief Transforms the 2D vector \c v with the flector \c F.
/// @relatedalso Flector2D
TERATHON_API Vector2D Transform(const Vector2D& v, const Flector2D& F);
/// @brief Transforms the 2D flat point \c q with the flector \c F.
/// @relatedalso Flector2D
TERATHON_API FlatPoint2D Transform(const FlatPoint2D& q, const Flector2D& F);
/// @brief Transforms the 2D Euclidean point \c q with the flector \c F.
/// @relatedalso Flector2D
TERATHON_API Point2D Transform(const Point2D& q, const Flector2D& F);
/// @brief Transforms the 2D line \c h with the flector \c F.
/// @relatedalso Flector2D
TERATHON_API Line2D Transform(const Line2D& h, const Flector2D& F);
// ==============================================
// Reverses
// ==============================================
/// @brief Returns the reverse of the 2D flector \c F.
/// @relatedalso Flector2D
inline Flector2D Reverse(const Flector2D& F)
{
return (Flector2D(-F.x, -F.y, -F.z, F.w));
}
/// @brief Returns the antireverse of the 2D flector \c F.
/// @relatedalso Flector2D
inline Flector2D Antireverse(const Flector2D& F)
{
return (Flector2D(F.x, F.y, F.z, -F.w));
}
inline Flector2D operator ~(const Flector2D& F) {return (Antireverse(F));}
// ==============================================
// Norms
// ==============================================
/// @brief Returns the squared bulk norm of the 2D flector \c F.
/// @relatedalso Flector2D
inline float SquaredBulkNorm(const Flector2D& F)
{
return (F.z * F.z + F.w * F.w);
}
/// @brief Returns the squared weight norm of the 2D flector \c F.
/// @relatedalso Flector2D
inline float SquaredWeightNorm(const Flector2D& F)
{
return (F.x * F.x + F.y * F.y);
}
/// @brief Calculates the unitized equivalent of a 2D flector.
///
/// The \c Unitize() function multiplies a 3D flector by the inverse magnitude of its weight, which is made up of its
/// <b>e</b><sub>23</sub> and <b>e</b><sub>31</sub> coordinates. If these coordinates are all zero, then the result is undefined.
///
/// @relatedalso Flector2D
inline Flector2D Unitize(const Flector2D& F)
{
return (F * InverseSqrt(F.x * F.x + F.y * F.y));
}
// ==============================================
// POD Structures
// ==============================================
struct ConstFlector2D
{
float x, y, z, w;
operator const Flector2D&(void) const
{
return (reinterpret_cast<const Flector2D&>(*this));
}
const Flector2D *operator &(void) const
{
return (reinterpret_cast<const Flector2D *>(this));
}
const Flector2D *operator ->(void) const
{
return (reinterpret_cast<const Flector2D *>(this));
}
};
}
#endif