-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathTSBivector3D.h
355 lines (268 loc) · 9.4 KB
/
TSBivector3D.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
//
// 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 TSBivector3D_h
#define TSBivector3D_h
#include "TSVector3D.h"
#define TERATHON_BIVECTOR3D 1
namespace Terathon
{
class Bivector3D;
struct ConstBivector3D;
// ==============================================
// Bivector3D
// ==============================================
struct TypeBivector3D
{
typedef float component_type;
typedef Vector2D vector2D_type;
typedef Bivector3D vector3D_type;
};
/// @brief Encapsulates a 3D bivector.
///
/// The \c Bivector3D class is used to store a three-dimensional bivector having floating-point
/// components <i>x</i>, <i>y</i>, and <i>z</i>.
///
/// @sa Vector3D
class Bivector3D : public Antivec3D<TypeBivector3D>
{
public:
TERATHON_API static const ConstBivector3D zero;
TERATHON_API static const ConstBivector3D yz_unit;
TERATHON_API static const ConstBivector3D zx_unit;
TERATHON_API static const ConstBivector3D xy_unit;
TERATHON_API static const ConstBivector3D minus_yz_unit;
TERATHON_API static const ConstBivector3D minus_zx_unit;
TERATHON_API static const ConstBivector3D minus_xy_unit;
/// @brief Default constructor that leaves the components uninitialized.
inline Bivector3D() = default;
/// @brief Constructor that sets components explicitly.
/// @param a,b,c The components of the bivector.
Bivector3D(float a, float b, float c) : Antivec3D<TypeBivector3D>(a, b, c) {}
template <typename type>
explicit Bivector3D(const Antivec3D<type>& v) : Antivec3D<TypeBivector3D>(float(v.x), float(v.y), float(v.z)) {}
/// @brief Sets all three components of a 3D bivector.
/// @param a,b,c The new components of the bivector.
Bivector3D& Set(float a, float b, float c)
{
xyz.Set(a, b, c);
return (*this);
}
void Set(float a, float b, float c) volatile
{
xyz.Set(a, b, c);
}
Bivector3D& operator =(const Bivector3D& v)
{
xyz = v.xyz;
return (*this);
}
void operator =(const Bivector3D& v) volatile
{
xyz = v.xyz;
}
template <typename type_struct, int count, int index_x, int index_y, int index_z>
Bivector3D& operator =(const Subvec3D<type_struct, true, count, index_x, index_y, index_z>& v)
{
xyz = v;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y, int index_z>
void operator =(const Subvec3D<type_struct, true, count, index_x, index_y, index_z>& v) volatile
{
xyz = v;
}
Bivector3D& operator +=(const Bivector3D& v)
{
xyz += v.xyz;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y, int index_z>
Bivector3D& operator +=(const Subvec3D<type_struct, true, count, index_x, index_y, index_z>& v)
{
xyz += v;
return (*this);
}
Bivector3D& operator -=(const Bivector3D& v)
{
xyz += v.xyz;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y, int index_z>
Bivector3D& operator -=(const Subvec3D<type_struct, true, count, index_x, index_y, index_z>& v)
{
xyz -= v;
return (*this);
}
Bivector3D& operator *=(float n)
{
xyz *= n;
return (*this);
}
Bivector3D& operator /=(float n)
{
xyz /= n;
return (*this);
}
Bivector3D& Normalize(void)
{
return (static_cast<Bivector3D&>(xyz.Normalize()));
}
};
/// @brief Returns the negation of the 3D bivector \c v.
/// @related Bivector3D
inline Bivector3D operator -(const Bivector3D& v)
{
return (Bivector3D(-v.x, -v.y, -v.z));
}
inline Bivector3D operator +(const Bivector3D& a, const Bivector3D& b)
{
return (Bivector3D(a.x + b.x, a.y + b.y, a.z + b.z));
}
inline Bivector3D operator -(const Bivector3D& a, const Bivector3D& b)
{
return (Bivector3D(a.x - b.x, a.y - b.y, a.z - b.z));
}
/// @brief Returns the product of the 3D bivector \c v and the scalar \c n.
/// @related Bivector3D
inline Bivector3D operator *(const Bivector3D& v, float n)
{
return (Bivector3D(v.x * n, v.y * n, v.z * n));
}
/// @brief Returns the product of the 3D bivector \c v and the scalar \c n.
/// @related Bivector3D
inline Bivector3D operator *(float n, const Bivector3D& v)
{
return (Bivector3D(n * v.x, n * v.y, n * v.z));
}
/// @brief Returns the product of the 3D bivector \c v and the inverse of the scalar \c n.
/// @related Bivector3D
inline Bivector3D operator /(const Bivector3D& v, float n)
{
n = 1.0F / n;
return (Bivector3D(v.x * n, v.y * n, v.z * n));
}
/// @brief Returns the componentwise product of the 3D bivectors \c a and \c b.
/// @related Bivector3D
inline Bivector3D operator *(const Bivector3D& a, const Bivector3D& b)
{
return (Bivector3D(a.x * b.x, a.y * b.y, a.z * b.z));
}
// ==============================================
// Magnitude
// ==============================================
/// @brief Returns the magnitude of the 3D bivector \c v.
/// @relatedalso Bivector3D
inline float Magnitude(const Bivector3D& v)
{
return (Sqrt(v.x * v.x + v.y * v.y + v.z * v.z));
}
/// @brief Returns the inverse magnitude of the 3D bivector \c v.
/// @relatedalso Bivector3D
inline float InverseMag(const Bivector3D& v)
{
return (InverseSqrt(v.x * v.x + v.y * v.y + v.z * v.z));
}
/// @brief Returns the squared magnitude of the 3D bivector \c v.
/// @relatedalso Bivector3D
inline float SquaredMag(const Bivector3D& v)
{
return (v.x * v.x + v.y * v.y + v.z * v.z);
}
/// @brief Calculates the normalized version of the 3D bivector \c v.
///
/// Multiplies the 3D bivector \c v by the inverse of its magnitude. The return value is a
/// bivector having unit area with the same attitude as \c v. If the magnitude of \c v is
/// zero, then the result is undefined.
///
/// @relatedalso Bivector3D
inline Bivector3D Normalize(const Bivector3D& v)
{
return (v * InverseSqrt(v.x * v.x + v.y * v.y + v.z * v.z));
}
// ==============================================
// Dot
// ==============================================
/// @brief Calculates the dot product of the 3D bivectors \c a and \c b.
/// @relatedalso Bivector3D
inline float Dot(const Bivector3D& a, const Bivector3D& b)
{
return (a.x * b.x + a.y * b.y + a.z * b.z);
}
// ==============================================
// Complement
// ==============================================
/// @brief Returns the complement of the 3D vector \c v, which is a bivector, with respect to the volume element <b>e</b><sub>123</sub>.
/// @relatedalso Bivector3D
inline const Bivector3D& Complement(const Vector3D& v)
{
return (reinterpret_cast<const Bivector3D&>(v));
}
/// @brief Returns the complement of the 3D bivector \c v, which is a vector, with respect to the volume element <b>e</b><sub>123</sub>.
/// @relatedalso Bivector3D
inline const Vector3D& Complement(const Bivector3D& v)
{
return (reinterpret_cast<const Vector3D&>(v));
}
inline const Bivector3D& operator !(const Vector3D& v) {return (Complement(v));}
inline const Vector3D& operator !(const Bivector3D& v) {return (Complement(v));}
// ==============================================
// Wedge
// ==============================================
/// @brief Calculates the wedge product of the vectors \c a and \c b to produce a 3D bivector.
/// @relatedalso Bivector3D
inline Bivector3D Wedge(const Vector3D& a, const Vector3D& b)
{
return (Bivector3D(a.y * b.z - a.z * b.y, a.z * b.x - a.x * b.z, a.x * b.y - a.y * b.x));
}
/// @brief Calculates the antiwedge product of the bivectors \c a and \c b to produce a 3D vector.
/// @relatedalso Bivector3D
inline Vector3D Antiwedge(const Bivector3D& a, const Bivector3D& b)
{
return (Vector3D(a.y * b.z - a.z * b.y, a.z * b.x - a.x * b.z, a.x * b.y - a.y * b.x));
}
inline float Antiwedge(const Bivector3D& a, const Vector3D& b)
{
return (a.xyz ^ b.xyz);
}
inline float Antiwedge(const Vector3D& a, const Bivector3D& b)
{
return (a.xyz ^ b.xyz);
}
template <typename type_struct, int count, int index_x, int index_y, int index_z>
inline float Antiwedge(const Bivector3D& a, const Subvec3D<type_struct, false, count, index_x, index_y, index_z>& b)
{
return (a.xyz ^ b);
}
inline Bivector3D operator ^(const Vector3D& a, const Vector3D& b) {return (Wedge(a, b));}
inline Vector3D operator ^(const Bivector3D& a, const Bivector3D& b) {return (Antiwedge(a, b));}
inline float operator ^(const Bivector3D& a, const Vector3D& b) {return (Antiwedge(a, b));}
inline float operator ^(const Vector3D& a, const Bivector3D& b) {return (Antiwedge(a, b));}
template <typename type_struct, int count, int index_x, int index_y, int index_z>
inline float operator ^(const Bivector3D& a, const Subvec3D<type_struct, false, count, index_x, index_y, index_z>& b) {return (Antiwedge(a, b));}
// ==============================================
// POD Structures
// ==============================================
struct ConstBivector3D
{
float x, y, z;
operator const Bivector3D&(void) const
{
return (reinterpret_cast<const Bivector3D&>(*this));
}
const Bivector3D *operator &(void) const
{
return (reinterpret_cast<const Bivector3D *>(this));
}
const Bivector3D *operator ->(void) const
{
return (reinterpret_cast<const Bivector3D *>(this));
}
};
typedef Bivector3D Antivector3D;
}
#endif