-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathTSVector2D.h
688 lines (527 loc) · 16.2 KB
/
TSVector2D.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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
//
// 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 TSVector2D_h
#define TSVector2D_h
//# \component Math Library
//# \prefix Math/
#include "TSAlgebra.h"
#define TERATHON_VECTOR2D 1
#define TERATHON_POINT2D 1
namespace Terathon
{
class Vector2D;
class Origin2D;
struct ConstVector2D;
// ==============================================
// Vector2D
// ==============================================
struct TypeVector2D
{
typedef float component_type;
typedef Vector2D vector2D_type;
};
/// @brief Encapsulates a 2D vector.
///
/// The \c Vector2D class is used to store a two-dimensional direction vector having floating-point
/// components <i>x</i> and <i>y</i>. A direction vector stored in this class is assumed to have a
/// <i>w</i> coordinate of 0 whenever it needs to be converted to a four-dimensional representation.
/// Two-dimensional points (for which the <i>w</i> coordinate is 1) should be stored using the
/// \c Point2D class. The <i>z</i> coordinate of a 2D vector is always assumed to be 0.
///
/// @sa Point2D
/// @sa Vector3D
/// @sa Vector4D
class Vector2D : public Vec2D<TypeVector2D>
{
public:
TERATHON_API static const ConstVector2D zero;
TERATHON_API static const ConstVector2D x_unit;
TERATHON_API static const ConstVector2D y_unit;
TERATHON_API static const ConstVector2D minus_x_unit;
TERATHON_API static const ConstVector2D minus_y_unit;
/// @brief Default constructor that leaves the components uninitialized.
inline Vector2D() = default;
/// @brief Constructor that sets components explicitly.
/// @param a,b The components of the vector.
Vector2D(float a, float b) : Vec2D<TypeVector2D>(a, b) {}
template <typename type>
explicit Vector2D(const Vec2D<type>& v) : Vec2D<TypeVector2D>(float(v.x), float(v.y)) {}
/// @brief Sets both components of a 2D vector.
/// @param a,b The new components of the vector.
Vector2D& Set(float a, float b)
{
xy.Set(a, b);
return (*this);
}
void Set(float a, float b) volatile
{
xy.Set(a, b);
}
Vector2D& operator =(const Vector2D& v)
{
xy = v.xy;
return (*this);
}
void operator =(const Vector2D& v) volatile
{
xy = v.xy;
}
template <typename type_struct, int count, int index_x, int index_y>
Vector2D& operator =(const Subvec2D<type_struct, count, index_x, index_y>& v)
{
xy = v;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y>
void operator =(const Subvec2D<type_struct, count, index_x, index_y>& v) volatile
{
xy = v;
}
template <typename type>
Vector2D& operator =(const Vec2D<type>& v)
{
x = float(v.x);
y = float(v.y);
return (*this);
}
Vector2D& operator +=(const Vector2D& v)
{
xy += v.xy;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y>
Vector2D& operator +=(const Subvec2D<type_struct, count, index_x, index_y>& v)
{
xy += v;
return (*this);
}
Vector2D& operator -=(const Vector2D& v)
{
xy -= v.xy;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y>
Vector2D& operator -=(const Subvec2D<type_struct, count, index_x, index_y>& v)
{
xy -= v;
return (*this);
}
Vector2D& operator *=(const Vector2D& v)
{
xy *= v.xy;
return (*this);
}
template <typename type_struct, int count, int index_x, int index_y>
Vector2D& operator *=(const Subvec2D<type_struct, count, index_x, index_y>& v)
{
xy *= v;
return (*this);
}
Vector2D& operator *=(float n)
{
xy *= n;
return (*this);
}
Vector2D& operator /=(float n)
{
xy /= n;
return (*this);
}
Vector2D& Normalize(void)
{
return (static_cast<Vector2D&>(xy.Normalize()));
}
/// @brief Rotates the vector in the <i>x</i>-<i>y</i> plane through the
/// angle, in radians, given by the \c angle parameter.
TERATHON_API Vector2D& Rotate(float angle);
};
/// @brief Returns the negation of the 2D vector \c v.
/// @related Vector2D
inline Vector2D operator -(const Vector2D& v)
{
return (Vector2D(-v.x, -v.y));
}
inline Vector2D operator +(const Vector2D& a, const Vector2D& b)
{
return (Vector2D(a.x + b.x, a.y + b.y));
}
template <typename type_struct, int count, int index_x, int index_y>
inline Vector2D operator +(const Vector2D& a, const Subvec2D<type_struct, count, index_x, index_y>& b)
{
return (Vector2D(a.x + b.data[index_x], a.y + b.data[index_y]));
}
inline Vector2D operator -(const Vector2D& a, const Vector2D& b)
{
return (Vector2D(a.x - b.x, a.y - b.y));
}
template <typename type_struct, int count, int index_x, int index_y>
inline Vector2D operator -(const Vector2D& a, const Subvec2D<type_struct, count, index_x, index_y>& b)
{
return (Vector2D(a.x - b.data[index_x], a.y - b.data[index_y]));
}
/// @brief Returns the product of the 2D vector \c v and the scalar \c n.
/// @related Vector2D
inline Vector2D operator *(const Vector2D& v, float n)
{
return (Vector2D(v.x * n, v.y * n));
}
/// @brief Returns the product of the 2D vector \c v and the scalar \c n.
/// @related Vector2D
inline Vector2D operator *(float n, const Vector2D& v)
{
return (Vector2D(n * v.x, n * v.y));
}
/// @brief Returns the product of the 2D vector \c v and the inverse of the scalar \c n.
/// @related Vector2D
inline Vector2D operator /(const Vector2D& v, float n)
{
n = 1.0F / n;
return (Vector2D(v.x * n, v.y * n));
}
/// @brief Returns the componentwise product of the 2D vectors \c a and \c b.
/// @related Vector2D
inline Vector2D operator *(const Vector2D& a, const Vector2D& b)
{
return (Vector2D(a.x * b.x, a.y * b.y));
}
// ==============================================
// Point2D
// ==============================================
/// @brief Encapsulates a 2D point.
///
/// The \c Point2D class is used to store a two-dimensional point having floating-point
/// coordinates <i>x</i> and <i>y</i>. The difference between a point and a vector is that
/// a point is assumed to have a <i>w</i> coordinate of 1 whenever it needs to be converted
/// to a four-dimensional representation, whereas a vector is assumed to have a <i>w</i>
/// coordinate of 0. Such a conversion occurs when a vector or point is assigned to a
/// \c Vector4D object or is multiplied by a \c Transform3D object.
///
/// @sa Vector2D
/// @sa Vector3D
/// @sa Vector4D
class Point2D : public Vector2D
{
public:
TERATHON_API static const Origin2D origin;
/// @brief Default constructor that leaves the components uninitialized.
inline Point2D() = default;
/// @brief Constructor that sets components explicitly.
/// @param a,b The components of the point.
Point2D(float a, float b) : Vector2D(a, b) {}
explicit Point2D(const Vector2D& p) : Vector2D(p) {}
Point2D& operator =(const Vector2D& v)
{
xy = v.xy;
return (*this);
}
void operator =(const Vector2D& v) volatile
{
xy = v.xy;
}
template <typename type>
Point2D& operator =(const Vec2D<type>& v)
{
x = float(v.x);
y = float(v.y);
return (*this);
}
Point2D& operator +=(const Vector2D& v)
{
xy += v.xy;
return (*this);
}
Point2D& operator -=(const Vector2D& v)
{
xy -= v.xy;
return (*this);
}
Point2D& operator *=(const Vector2D& v)
{
xy *= v.xy;
return (*this);
}
Point2D& operator *=(float n)
{
xy *= n;
return (*this);
}
Point2D& operator /=(float n)
{
xy /= n;
return (*this);
}
};
/// @brief Returns the negation of the 2D point \c p.
/// @related Point2D
inline Point2D operator -(const Point2D& p)
{
return (Point2D(-p.x, -p.y));
}
inline Point2D operator +(const Point2D& a, const Point2D& b)
{
return (Point2D(a.x + b.x, a.y + b.y));
}
inline Point2D operator +(const Point2D& p, const Vector2D& v)
{
return (Point2D(p.x + v.x, p.y + v.y));
}
inline Point2D operator +(const Vector2D& v, const Point2D& p)
{
return (Point2D(v.x + p.x, v.y + p.y));
}
template <typename type_struct, int count, int index_x, int index_y>
inline Point2D operator +(const Point2D& p, const Subvec2D<type_struct, count, index_x, index_y>& v)
{
return (Point2D(p.x + v.data[index_x], p.y + v.data[index_y]));
}
inline Vector2D operator -(const Point2D& a, const Point2D& b)
{
return (Vector2D(a.x - b.x, a.y - b.y));
}
inline Point2D operator -(const Point2D& p, const Vector2D& v)
{
return (Point2D(p.x - v.x, p.y - v.y));
}
template <typename type_struct, int count, int index_x, int index_y>
inline Point2D operator -(const Point2D& p, const Subvec2D<type_struct, count, index_x, index_y>& v)
{
return (Point2D(p.x - v.data[index_x], p.y - v.data[index_y]));
}
/// @brief Returns the product of the 2D point \c p and the scalar \c n.
/// @related Point2D
inline Point2D operator *(const Point2D& p, float n)
{
return (Point2D(p.x * n, p.y * n));
}
/// @brief Returns the product of the 2D point \c p and the scalar \c n.
/// @related Point2D
inline Point2D operator *(float n, const Point2D& p)
{
return (Point2D(n * p.x, n * p.y));
}
/// @brief Returns the product of the 2D point \c p and the inverse of the scalar \c n.
/// @related Point2D
inline Point2D operator /(const Point2D& p, float n)
{
n = 1.0F / n;
return (Point2D(p.x * n, p.y * n));
}
/// @brief Returns the componentwise product of the 2D points \c a and \c b.
/// @related Point2D
inline Point2D operator *(const Point2D& a, const Point2D& b)
{
return (Point2D(a.x * b.x, a.y * b.y));
}
inline Point2D operator *(const Point2D& p, const Vector2D& v)
{
return (Point2D(p.x * v.x, p.y * v.y));
}
inline Point2D operator *(const Vector2D& v, const Point2D& p)
{
return (Point2D(v.x * p.x, v.y * p.y));
}
// ==============================================
// Magnitude
// ==============================================
/// @brief Returns the magnitude of the 2D vector \c v.
/// @relatedalso Vector2D
inline float Magnitude(const Vector2D& v)
{
return (Sqrt(v.x * v.x + v.y * v.y));
}
/// @brief Returns the inverse magnitude of the 2D vector \c v.
/// @relatedalso Vector2D
inline float InverseMag(const Vector2D& v)
{
return (InverseSqrt(v.x * v.x + v.y * v.y));
}
/// @brief Returns the squared magnitude of the 2D vector \c v.
/// @relatedalso Vector2D
inline float SquaredMag(const Vector2D& v)
{
return (v.x * v.x + v.y * v.y);
}
/// @brief Calculates the normalized version of the 2D vector \c v.
///
/// Multiplies the 2D 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 Vector2D
inline Vector2D Normalize(const Vector2D& v)
{
return (v * InverseMag(v));
}
// ==============================================
// Dot
// ==============================================
/// @brief Calculates the dot product of the 2D vectors \c a and \c b.
/// @relatedalso Vector2D
inline float Dot(const Vector2D& a, const Vector2D& b)
{
return (a.x * b.x + a.y * b.y);
}
inline float Dot(const Point2D& a, const Point2D& b)
{
return (a.x * b.x + a.y * b.y);
}
inline float Dot(const Point2D& p, const Vector2D& v)
{
return (p.x * v.x + p.y * v.y);
}
inline float Dot(const Vector2D& v, const Point2D& p)
{
return (v.x * p.x + v.y * p.y);
}
// ==============================================
// 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 Vector2D
inline Vector2D Project(const Vector2D& a, const Vector2D& 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 Vector2D
inline Vector2D Reject(const Vector2D& a, const Vector2D& b)
{
return (a - b * Dot(a, b));
}
// ==============================================
// Floor / ceiling
// ==============================================
/// @brief Returns the componentwise floor of the 2D vector \c v.
/// @related Vector2D
inline Vector2D Floor(const Vector2D& v)
{
return (Vector2D(Floor(v.x), Floor(v.y)));
}
/// @brief Returns the componentwise ceiling of the 2D vector \c v.
/// @related Vector2D
inline Vector2D Ceil(const Vector2D& v)
{
return (Vector2D(Ceil(v.x), Ceil(v.y)));
}
// ==============================================
// Complement
// ==============================================
/// @brief Calculates the complement of the 2D vector \c v with respect to the volume element <b>e</b><sub>12</sub>.
/// @relatedalso Vector2D
inline Vector2D Complement(const Vector2D& v)
{
return (Vector2D(-v.y, v.x));
}
inline Vector2D operator !(const Vector2D& v) {return (Complement(v));}
// ==============================================
// Wedge
// ==============================================
/// @brief Calculates the antiwedge product of the 2D vectors \c a and \c b.
/// @relatedalso Vector2D
inline float Antiwedge(const Vector2D& a, const Vector2D& b)
{
return (a.x * b.y - a.y * b.x);
}
inline float operator ^(const Vector2D& a, const Vector2D& b) {return (Antiwedge(a, b));}
// ==============================================
// POD Structures
// ==============================================
struct ConstVector2D
{
float x, y;
operator const Vector2D&(void) const
{
return (reinterpret_cast<const Vector2D&>(*this));
}
const Vector2D *operator &(void) const
{
return (reinterpret_cast<const Vector2D *>(this));
}
const Vector2D *operator ->(void) const
{
return (reinterpret_cast<const Vector2D *>(this));
}
};
struct ConstPoint2D
{
float x, y;
operator const Point2D&(void) const
{
return (reinterpret_cast<const Point2D&>(*this));
}
const Point2D *operator &(void) const
{
return (reinterpret_cast<const Point2D *>(this));
}
const Point2D *operator ->(void) const
{
return (reinterpret_cast<const Point2D *>(this));
}
};
class Origin2D
{
private:
TERATHON_API static const ConstPoint2D origin;
public:
operator const Point2D&(void) const
{
return (origin);
}
const Point2D *operator &(void) const
{
return (&origin);
}
};
inline const Point2D& operator +(const Origin2D&, const Vector2D& v)
{
return (static_cast<const Point2D&>(v));
}
template <typename type_struct, int count, int index_x, int index_y>
inline Point2D operator +(const Origin2D&, const Subvec2D<type_struct, count, index_x, index_y>& v)
{
return (Point2D(v.data[index_x], v.data[index_y]));
}
template <typename type_struct, int count>
inline const Point2D& operator +(const Origin2D&, const Subvec2D<type_struct, count, 0, 1>& v)
{
return (reinterpret_cast<const Point2D&>(v.data[0]));
}
template <typename type_struct, int count>
inline const Point2D& operator +(const Origin2D&, const Subvec2D<type_struct, count, 1, 2>& v)
{
return (reinterpret_cast<const Point2D&>(v.data[1]));
}
template <typename type_struct, int count>
inline const Point2D& operator +(const Origin2D&, const Subvec2D<type_struct, count, 2, 3>& v)
{
return (reinterpret_cast<const Point2D&>(v.data[2]));
}
inline Point2D operator -(const Origin2D&, const Vector2D& v)
{
return (Point2D(-v.x, -v.y));
}
template <typename type_struct, int count, int index_x, int index_y>
inline Point2D operator -(const Origin2D&, const Subvec2D<type_struct, count, index_x, index_y>& v)
{
return (Point2D(-v.data[index_x], -v.data[index_y]));
}
namespace Math
{
inline const Vector2D *GetTrigTable(void)
{
return (reinterpret_cast<const Vector2D *>(Math::trigTable));
}
}
inline Vector2D CosSin(float x)
{
Vector2D v;
CosSin(x, &v.x, &v.y);
return (v);
}
}
#endif