-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathTSVector4D.h
579 lines (453 loc) · 13.5 KB
/
TSVector4D.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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
//
// 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 TSVector4D_h
#define TSVector4D_h
#include "TSVector3D.h"
#define TERATHON_VECTOR4D 1
namespace Terathon
{
class Vector4D;
struct ConstVector4D;
// ==============================================
// Vector4D
// ==============================================
struct TypeVector4D
{
typedef float component_type;
typedef Vector2D vector2D_type;
typedef Vector3D vector3D_type;
typedef Vector4D vector4D_type;
};
/// @brief Encapsulates a 4D vector.
///
/// The \c Vector4D class is used to store a four-dimensional direction vector having floating-point
/// components <i>x</i>, <i>y</i>, <i>z</i>, and <i>w</i>.
///
/// @sa Vector2D
/// @sa Vector3D
class Vector4D : public Vec4D<TypeVector4D>
{
public:
TERATHON_API static const ConstVector4D zero;
TERATHON_API static const ConstVector4D x_unit;
TERATHON_API static const ConstVector4D y_unit;
TERATHON_API static const ConstVector4D z_unit;
TERATHON_API static const ConstVector4D w_unit;
TERATHON_API static const ConstVector4D minus_x_unit;
TERATHON_API static const ConstVector4D minus_y_unit;
TERATHON_API static const ConstVector4D minus_z_unit;
TERATHON_API static const ConstVector4D minus_w_unit;
/// @brief Default constructor that leaves the components uninitialized.
inline Vector4D() = default;
/// @brief Constructor that sets components explicitly.
/// @param a,b,c,d The components of the vector.
Vector4D(float a, float b, float c, float d) : Vec4D<TypeVector4D>(a, b, c, d) {}
template <typename type>
explicit Vector4D(const Vec4D<type>& v) : Vec4D<TypeVector4D>(float(v.x), float(v.y), float(v.z), float(v.w)) {}
Vector4D(const Vector3D& v, float d)
{
xyz = v.xyz;
w = d;
}
Vector4D(const Vector2D& v1, const Vector2D& v2)
{
xy = v1.xy;
zw = v2.xy;
}
Vector4D(const Vector3D& v)
{
xyz = v.xyz;
w = 0.0F;
}
Vector4D(const Point3D& p)
{
xyz = p.xyz;
w = 1.0F;
}
Vector4D(const Vector2D& v)
{
xy = v.xy;
z = 0.0F;
w = 0.0F;
}
Vector4D(const Point2D& p)
{
xy = p.xy;
z = 0.0F;
w = 1.0F;
}
/// @brief Sets all four components of a 4D vector.
/// @param a,b,c,d The new components of the vector.
Vector4D& Set(float a, float b, float c, float d)
{
xyzw.Set(a, b, c, d);
return (*this);
}
void Set(float a, float b, float c, float d) volatile
{
xyzw.Set(a, b, c, d);
}
Vector4D& Set(const Vector3D& v, float d)
{
xyzw.Set(v.x, v.y, v.z, d);
return (*this);
}
void Set(const Vector3D& v, float d) volatile
{
xyzw.Set(v.x, v.y, v.z, d);
}
Vector4D& Set(const Vector2D& v1, const Vector2D& v2)
{
xyzw.Set(v1.x, v1.y, v2.x, v2.y);
return (*this);
}
void Set(const Vector2D& v1, const Vector2D& v2) volatile
{
xyzw.Set(v1.x, v1.y, v2.x, v2.y);
}
Vector4D& Set(const Vector2D& v, float c, float d)
{
xyzw.Set(v.x, v.y, c, d);
return (*this);
}
void Set(const Vector2D& v, float c, float d) volatile
{
xyzw.Set(v.x, v.y, c, d);
}
Vector4D& operator =(const Vector4D& v)
{
xyzw = v.xyzw;
return (*this);
}
void operator =(const Vector4D& v) volatile
{
xyzw = v.xyzw;
}
Vector4D& operator =(const Vector3D& v)
{
xyz = v.xyz;
w = 0.0F;
return (*this);
}
void operator =(const Vector3D& v) volatile
{
xyz = v.xyz;
w = 0.0F;
}
Vector4D& operator =(const Point3D& p)
{
xyz = p.xyz;
w = 1.0F;
return (*this);
}
void operator =(const Point3D& p) volatile
{
xyz = p.xyz;
w = 1.0F;
}
Vector4D& operator =(const Vector2D& v)
{
xy = v.xy;
z = 0.0F;
w = 0.0F;
return (*this);
}
void operator =(const Vector2D& v) volatile
{
xy = v.xy;
z = 0.0F;
w = 0.0F;
}
Vector4D& operator =(const Point2D& p)
{
xy = p.xy;
z = 0.0F;
w = 1.0F;
return (*this);
}
void operator =(const Point2D& p) volatile
{
xy = p.xy;
z = 0.0F;
w = 1.0F;
}
template <typename type_struct, int count, int index_x, int index_y, int index_z, int index_w>
Vector4D& operator =(const Subvec4D<type_struct, false, count, index_x, index_y, index_z, index_w>& v)
{
xyzw = v;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y, int index_z, int index_w>
void operator =(const Subvec4D<type_struct, false, count, index_x, index_y, index_z, index_w>& v) volatile
{
xyzw = v;
}
template <typename type>
Vector4D& operator =(const Vec4D<type>& v)
{
x = float(v.x);
y = float(v.y);
z = float(v.z);
w = float(v.w);
return (*this);
}
Vector4D& operator +=(const Vector4D& v)
{
xyzw += v.xyzw;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y, int index_z, int index_w>
Vector4D& operator +=(const Subvec4D<type_struct, false, count, index_x, index_y, index_z, index_w>& v)
{
xyzw += v;
return (*this);
}
Vector4D& operator -=(const Vector4D& v)
{
xyzw -= v.xyzw;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y, int index_z, int index_w>
Vector4D& operator -=(const Subvec4D<type_struct, false, count, index_x, index_y, index_z, index_w>& v)
{
xyzw -= v;
return (*this);
}
Vector4D& operator *=(const Vector4D& v)
{
xyzw *= v.xyzw;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y, int index_z, int index_w>
Vector4D& operator *=(const Subvec4D<type_struct, false, count, index_x, index_y, index_z, index_w>& v)
{
xyzw *= v;
return (*this);
}
Vector4D& operator *=(float n)
{
xyzw *= n;
return (*this);
}
Vector4D& operator /=(float n)
{
xyzw /= n;
return (*this);
}
Vector4D& Normalize(void)
{
return (static_cast<Vector4D&>(xyzw.Normalize()));
}
/// @brief Rotates the vector about the <i>x</i> axis through the angle, in radians,
/// given by the \c angle parameter. The <i>w</i> coordinate is not modified.
TERATHON_API Vector4D& RotateAboutX(float angle);
/// @brief Rotates the vector about the <i>y</i> axis through the angle, in radians,
/// given by the \c angle parameter. The <i>w</i> coordinate is not modified.
TERATHON_API Vector4D& RotateAboutY(float angle);
/// @brief Rotates the vector about the <i>z</i> axis through the angle, in radians,
/// given by the \c angle parameter. The <i>w</i> coordinate is not modified.
TERATHON_API Vector4D& RotateAboutZ(float angle);
/// @brief Rotates the vector about the axis given by the \c axis parameter through the angle,
/// in radians, given by the \c angle parameter. The <i>w</i> coordinate is not modified.
TERATHON_API Vector4D& RotateAboutAxis(float angle, const Bivector3D& axis);
};
/// @brief Returns the negation of the 4D vector \c v.
/// @related Vector4D
inline Vector4D operator -(const Vector4D& v)
{
return (Vector4D(-v.x, -v.y, -v.z, -v.w));
}
inline Vector4D operator +(const Vector4D& a, const Vector4D& b)
{
return (Vector4D(a.x + b.x, a.y + b.y, a.z + b.z, a.w + b.w));
}
inline Vector4D operator +(const Vector4D& a, const Vector3D& b)
{
return (Vector4D(a.x + b.x, a.y + b.y, a.z + b.z, a.w));
}
inline Vector4D operator +(const Vector3D& a, const Vector4D& b)
{
return (Vector4D(a.x + b.x, a.y + b.y, a.z + b.z, b.w));
}
inline Vector4D operator +(const Vector4D& a, const Vector2D& b)
{
return (Vector4D(a.x + b.x, a.y + b.y, a.z, a.w));
}
inline Vector4D operator +(const Vector2D& a, const Vector4D& b)
{
return (Vector4D(a.x + b.x, a.y + b.y, b.z, b.w));
}
inline Vector4D operator -(const Vector4D& a, const Vector4D& b)
{
return (Vector4D(a.x - b.x, a.y - b.y, a.z - b.z, a.w - b.w));
}
inline Vector4D operator -(const Vector4D& a, const Vector3D& b)
{
return (Vector4D(a.x - b.x, a.y - b.y, a.z - b.z, a.w));
}
inline Vector4D operator -(const Vector3D& a, const Vector4D& b)
{
return (Vector4D(a.x - b.x, a.y - b.y, a.z - b.z, -b.w));
}
inline Vector4D operator -(const Vector4D& a, const Vector2D& b)
{
return (Vector4D(a.x - b.x, a.y - b.y, a.z, a.w));
}
inline Vector4D operator -(const Vector2D& a, const Vector4D& b)
{
return (Vector4D(a.x - b.x, a.y - b.y, -b.z, -b.w));
}
/// @brief Returns the product of the 4D vector \c v and the scalar \c n.
/// @related Vector4D
inline Vector4D operator *(const Vector4D& v, float n)
{
return (Vector4D(v.x * n, v.y * n, v.z * n, v.w * n));
}
/// @brief Returns the product of the 4D vector \c v and the scalar \c n.
/// @related Vector4D
inline Vector4D operator *(float n, const Vector4D& v)
{
return (Vector4D(n * v.x, n * v.y, n * v.z, n * v.w));
}
/// @brief Returns the product of the 4D vector \c v and the inverse of the scalar \c n.
/// @related Vector4D
inline Vector4D operator /(const Vector4D& v, float n)
{
n = 1.0F / n;
return (Vector4D(v.x * n, v.y * n, v.z * n, v.w * n));
}
/// @brief Returns the componentwise product of the 4D vectors \c a and \c b.
/// @related Vector4D
inline Vector4D operator *(const Vector4D& a, const Vector4D& b)
{
return (Vector4D(a.x * b.x, a.y * b.y, a.z * b.z, a.w * b.w));
}
// ==============================================
// Magnitude
// ==============================================
/// @brief Returns the magnitude of the 4D vector \c v.
/// @relatedalso Vector4D
inline float Magnitude(const Vector4D& v)
{
return (Sqrt(v.x * v.x + v.y * v.y + v.z * v.z + v.w * v.w));
}
/// @brief Returns the inverse magnitude of the 4D vector \c v.
/// @relatedalso Vector4D
inline float InverseMag(const Vector4D& v)
{
return (InverseSqrt(v.x * v.x + v.y * v.y + v.z * v.z + v.w * v.w));
}
/// @brief Returns the squared magnitude of the 4D vector \c v.
/// @relatedalso Vector4D
inline float SquaredMag(const Vector4D& v)
{
return (v.x * v.x + v.y * v.y + v.z * v.z + v.w * v.w);
}
/// @brief Calculates the normalized version of the 4D vector \c v.
///
/// Multiplies the 4D vector \c v by the inverse of its magnitude. The return value is a vector
/// having unit length that points in the same direction as \c v. If the magnitude of \c v is zero,
/// then the result is undefined.
///
/// @relatedalso Vector4D
inline Vector4D Normalize(const Vector4D& v)
{
return (v * InverseMag(v));
}
// ==============================================
// Dot
// ==============================================
/// @brief Calculates the dot product of the 4D vectors \c a and \c b.
/// @relatedalso Vector3D
inline float Dot(const Vector4D& a, const Vector4D& b)
{
return (a.x * b.x + a.y * b.y + a.z * b.z + a.w * b.w);
}
inline float Dot(const Vector4D& a, const Vector3D& b)
{
return (a.x * b.x + a.y * b.y + a.z * b.z);
}
inline float Dot(const Vector3D& a, const Vector4D& b)
{
return (a.x * b.x + a.y * b.y + a.z * b.z);
}
inline float Dot(const Vector4D& v, const Point3D& p)
{
return (v.x * p.x + v.y * p.y + v.z * p.z + v.w);
}
inline float Dot(const Point3D& a, const Vector4D& b)
{
return (a.x * b.x + a.y * b.y + a.z * b.z + b.w);
}
inline float Dot(const Vector4D& a, const Vector2D& b)
{
return (a.x * b.x + a.y * b.y);
}
inline float Dot(const Vector2D& a, const Vector4D& b)
{
return (a.x * b.x + a.y * b.y);
}
inline float Dot(const Vector4D& v, const Point2D& p)
{
return (v.x * p.x + v.y * p.y + v.w);
}
inline float Dot(const Point2D& a, const Vector4D& b)
{
return (a.x * b.x + a.y * b.y + b.w);
}
// ==============================================
// Projection
// ==============================================
/// @brief Returns (<b>a</b> ⋅ <b>b</b>)<b>b</b>, which is the projection of \c a onto \c b under the assumption that the magnitude of \c b is one.
/// @relatedalso Vector4D
inline Vector4D Project(const Vector4D& a, const Vector4D& b)
{
return (b * Dot(a, b));
}
/// @brief Returns <b>a</b> − (<b>a</b> ⋅ <b>b</b>)<b>b</b>, which is the rejection of \c a from \c b under the assumption that the magnitude of \c b is one.
/// @relatedalso Vector4D
inline Vector4D Reject(const Vector4D& a, const Vector4D& b)
{
return (a - b * Dot(a, b));
}
// ==============================================
// Floor / ceiling
// ==============================================
/// @brief Returns the componentwise floor of the 4D vector \c v.
/// @related Vector4D
inline Vector4D Floor(const Vector4D& v)
{
return (Vector4D(Floor(v.x), Floor(v.y), Floor(v.z), Floor(v.w)));
}
/// @brief Returns the componentwise ceiling of the 4D vector \c v.
/// @related Vector4D
inline Vector4D Ceil(const Vector4D& v)
{
return (Vector4D(Ceil(v.x), Ceil(v.y), Ceil(v.z), Ceil(v.w)));
}
// ==============================================
// POD Structures
// ==============================================
struct ConstVector4D
{
float x, y, z, w;
operator const Vector4D&(void) const
{
return (reinterpret_cast<const Vector4D&>(*this));
}
const Vector4D *operator &(void) const
{
return (reinterpret_cast<const Vector4D *>(this));
}
const Vector4D *operator ->(void) const
{
return (reinterpret_cast<const Vector4D *>(this));
}
};
}
#endif