forked from netwarm007/GameEngineFromScratch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeommath.hpp
1004 lines (824 loc) · 28.6 KB
/
geommath.hpp
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
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma once
#include <algorithm>
#include <cassert>
#include <cstdint>
#include <cstring>
#include <initializer_list>
#include <iostream>
#include <iomanip>
#include <limits>
#include <cmath>
#include <memory>
#include <set>
#include <unordered_set>
#include <vector>
#include "CrossProduct.h"
#include "MulByElement.h"
#include "Normalize.h"
#include "Transform.h"
#include "Transpose.h"
#include "AddByElement.h"
#include "SubByElement.h"
#include "MatrixUtil.h"
#include "InverseMatrix4X4f.h"
#include "DCT.h"
#include "Absolute.h"
#include "Pow.h"
#include "DivByElement.h"
#ifndef PI
#define PI 3.14159265358979323846f
#endif
#ifndef TWO_PI
#define TWO_PI 3.14159265358979323846f * 2.0f
#endif
namespace My {
typedef float Scalar;
#ifdef max
#undef max
#endif
#ifdef min
#undef min
#endif
template<typename T>
constexpr float normalize(T value) {
return value < 0
? -static_cast<float>(value) / std::numeric_limits<T>::min()
: static_cast<float>(value) / std::numeric_limits<T>::max()
;
}
template <typename T, int N>
struct Vector
{
T data[N];
Vector() = default;
Vector(const T val)
{
for (int i = 0; i < N; i++)
{
data[i] = val;
}
}
Vector(std::initializer_list<const T> list)
{
size_t i = 0;
for (auto val : list)
{
data[i++] = val;
}
}
operator T*() { return reinterpret_cast<T*>(this); };
operator const T*() const { return reinterpret_cast<const T*>(this); }
void Set(const T val)
{
for (int i = 0; i < N; i++)
{
data[i] = val;
}
}
void Set(const T* pval)
{
std::memcpy(data, pval, sizeof(T) * N);
}
void Set(std::initializer_list<const T> list)
{
size_t i = 0;
for (auto val : list)
{
data[i++] = val;
}
}
Vector& operator=(const T* pf)
{
Set(pf);
return *this;
};
Vector& operator=(const T f)
{
Set(f);
return *this;
};
Vector& operator=(const Vector& v)
{
std::memcpy(this, &v, sizeof(v));
return *this;
};
};
typedef Vector<float, 2> Vector2f;
typedef Vector<float, 3> Vector3f;
typedef Vector<double, 3> Vector3;
typedef Vector<int16_t, 3> Vector3i16;
typedef Vector<int32_t, 3> Vector3i32;
typedef Vector<float, 4> Vector4f;
typedef Vector<uint8_t, 4> R8G8B8A8Unorm;
typedef Vector<uint8_t, 4> Vector4i;
template<typename T>
class Quaternion : public Vector<T, 4>
{
public:
using Vector<T, 4>::Vector;
Quaternion() = default;
Quaternion(const Vector<T, 4> rhs)
{
std::memcpy(this, &rhs, sizeof(Quaternion));
}
};
template <typename T, int N>
std::ostream& operator<<(std::ostream& out, Vector<T, N> vector)
{
out.precision(4);
out.setf(std::ios::fixed);
out << "( ";
for (uint32_t i = 0; i < N; i++) {
out << vector.data[i] << ((i == N - 1)? ' ' : ',');
}
out << ")" << std::endl;
return out;
}
template <typename T, int N>
void VectorAdd(Vector<T, N>& result, const Vector<T, N>& vec1, const Vector<T, N>& vec2)
{
ispc::AddByElement(vec1, vec2, result, N);
}
template <typename T, int N>
Vector<T, N> operator+(const Vector<T, N>& vec1, const Vector<T, N>& vec2)
{
Vector<T, N> result;
VectorAdd(result, vec1, vec2);
return result;
}
template <typename T, int N>
Vector<T, N> operator+(const Vector<T, N>& vec, const T scalar)
{
Vector<T, N> result(scalar);
VectorAdd(result, vec, result);
return result;
}
template <typename T, int N>
void VectorSub(Vector<T, N>& result, const Vector<T, N>& vec1, const Vector<T, N>& vec2)
{
ispc::SubByElement(vec1, vec2, result, N);
}
template <typename T, int N>
Vector<T, N> operator-(const Vector<T, N>& vec1, const Vector<T, N>& vec2)
{
Vector<T, N> result;
VectorSub(result, vec1, vec2);
return result;
}
template <typename T, int N>
Vector<T, N> operator-(const Vector<T, N>& vec, const T scalar)
{
Vector<T, N> result(scalar);
VectorSub(result, vec, result);
return result;
}
template <typename T>
inline void CrossProduct(T& result, const Vector<T, 2>& vec1, const Vector<T, 2>& vec2)
{
result = vec1[0] * vec2[1] - vec1[1] * vec2[0];
}
template <typename T>
inline void CrossProduct(Vector<T, 3>& result, const Vector<T, 3>& vec1, const Vector<T, 3>& vec2)
{
ispc::CrossProduct(vec1, vec2, result);
}
template <typename T>
inline void DotProduct(T& result, const T* a, const T* b, const size_t count)
{
T* _result = new T[count];
result = static_cast<T>(0);
ispc::MulByElement(a, b, _result, count);
for (size_t i = 0; i < count; i++) {
result += _result[i];
}
delete[] _result;
}
template <typename T, int N>
inline void DotProduct(T& result, const Vector<T, N>& vec1, const Vector<T, N>& vec2)
{
DotProduct(result, static_cast<const T*>(vec1), static_cast<const T*>(vec2), N);
}
template <typename T, int N>
inline void MulByElement(Vector<T, N>& result, const Vector<T, N>& a, const Vector<T, N>& b)
{
ispc::MulByElement(a, b, result, N);
}
template <typename T, int N>
inline void MulByElement(Vector<T, N>& result, const Vector<T, N>& a, const T scalar)
{
Vector<T, N> v(scalar);
ispc::MulByElement(a, v, result, N);
}
template <typename T, int N>
Vector<T, N> operator*(const Vector<T, N>& vec, const Scalar scalar)
{
Vector<T, N> result;
MulByElement(result, vec, scalar);
return result;
}
template <typename T, int N>
Vector<T, N> operator*(const Scalar scalar, const Vector<T, N>& vec)
{
Vector<T, N> result;
MulByElement(result, vec, scalar);
return result;
}
template <typename T, int N>
Vector<T, N> operator*(const Vector<T, N>& vec1, const Vector<T, N>& vec2)
{
Vector<T, N> result;
MulByElement(result, vec1, vec2);
return result;
}
template <typename T, int N>
inline void DivByElement(Vector<T, N>& result, const Vector<T, N>& a, const Vector<T, N>& b)
{
ispc::DivByElement(a, b, result, N);
}
template <typename T, int N>
inline void DivByElement(Vector<T, N>& result, const Vector<T, N>& a, const T scalar)
{
Vector<T, N> v(scalar);
ispc::DivByElement(a, v, result, N);
}
template <typename T, int N>
Vector<T, N> operator/(const Vector<T, N>& vec, const Scalar scalar)
{
Vector<T, N> result;
DivByElement(result, vec, scalar);
return result;
}
template <typename T, int N>
Vector<T, N> operator/=(const Vector<T, N>& vec, const Scalar scalar)
{
return vec / scalar;
}
template <typename T, int N>
Vector<T, N> operator/(const Scalar scalar, const Vector<T, N>& vec)
{
Vector<T, N> result;
DivByElement(result, vec, scalar);
return result;
}
template <typename T, int N>
Vector<T, N> operator/(const Vector<T, N>& vec1, const Vector<T, N>& vec2)
{
Vector<T, N> result;
DivByElement(result, vec1, vec2);
return result;
}
template <typename T, int N>
Vector<T, N> operator/=(const Vector<T, N>& vec1, const Vector<T, N>& vec2)
{
return vec1 / vec2;
}
template <typename T>
inline T pow(const T base, const Scalar exponent)
{
return std::pow(base, exponent);
}
template <typename T, int N>
Vector<T, N> pow(const Vector<T, N>& vec, const Scalar exponent)
{
Vector<T, N> result;
ispc::Pow(vec, N, exponent, result);
return result;
}
template <typename T>
inline T abs(const T data)
{
return std::abs(data);
}
template <typename T, int N>
Vector<T, N> abs(const Vector<T, N>& vec)
{
Vector<T, N> result;
ispc::Absolute(result, vec, N);
return result;
}
template <typename T, int N>
inline T Length(const Vector<T, N>& vec)
{
T result;
DotProduct(result, vec, vec);
return static_cast<T>(std::sqrt(result));
}
template <typename T, int N>
inline bool operator>=(Vector<T, N>&vec, Scalar scalar)
{
return Length(vec) >= scalar;
}
template <typename T, int N>
inline bool operator>(Vector<T, N>&vec, Scalar scalar)
{
return Length(vec) > scalar;
}
template <typename T, int N>
inline bool operator<=(Vector<T, N>&vec, Scalar scalar)
{
return Length(vec) <= scalar;
}
template <typename T, int N>
inline bool operator<(Vector<T, N>&vec, Scalar scalar)
{
return Length(vec) < scalar;
}
template <typename T, int N>
inline void Normalize(Vector<T, N>& a)
{
T length;
DotProduct(length, static_cast<T*>(a), static_cast<T*>(a), N);
length = std::sqrt(length);
ispc::Normalize(N, a, length);
}
// Matrix
template <typename T, int ROWS, int COLS>
struct Matrix
{
Vector<T, COLS> data[ROWS];
Vector<T, COLS>& operator[](int row_index) {
return data[row_index];
}
const Vector<T, COLS>& operator[](int row_index) const {
return data[row_index];
}
operator T*() { return &data[0][0]; };
operator const T*() const { return static_cast<const T*>(&data[0][0]); };
Matrix& operator=(const T* _data)
{
std::memcpy(data, _data, sizeof(T) * COLS * ROWS);
return *this;
}
Matrix& operator=(const Matrix& rhs)
{
std::memcpy(data, rhs, sizeof(Matrix));
return *this;
}
bool isOrthogonal() const
{
Matrix trans;
Transpose(trans, *this);
Matrix I;
BuildIdentityMatrix(I);
if(*this * trans == I)
return true;
else
return false;
}
};
typedef Matrix<float, 3, 3> Matrix3X3f;
typedef Matrix<float, 4, 4> Matrix4X4f;
typedef Matrix<int32_t, 8, 8> Matrix8X8i;
typedef Matrix<float, 8, 8> Matrix8X8f;
template <typename T, int ROWS, int COLS>
std::ostream& operator<<(std::ostream& out, Matrix<T, ROWS, COLS> matrix)
{
out << std::endl;
for (int i = 0; i < ROWS; i++) {
out << matrix[i];
}
out << std::endl;
return out;
}
template <typename T, int ROWS, int COLS>
void MatrixAdd(Matrix<T, ROWS, COLS>& result, const Matrix<T, ROWS, COLS>& matrix1, const Matrix<T, ROWS, COLS>& matrix2)
{
ispc::AddByElement(matrix1, matrix2, result, ROWS * COLS);
}
template <typename T, int ROWS, int COLS>
Matrix<T, ROWS, COLS> operator+(const Matrix<T, ROWS, COLS>& matrix1, const Matrix<T, ROWS, COLS>& matrix2)
{
Matrix<T, ROWS, COLS> result;
MatrixAdd(result, matrix1, matrix2);
return result;
}
template <typename T, int ROWS, int COLS>
void MatrixSub(Matrix<T, ROWS, COLS>& result, const Matrix<T, ROWS, COLS>& matrix1, const Matrix<T, ROWS, COLS>& matrix2)
{
ispc::SubByElement(matrix1, matrix2, result, ROWS * COLS);
}
template <typename T, int ROWS, int COLS>
void MatrixMulByElement(Matrix<T, ROWS, COLS>& result, const Matrix<T, ROWS, COLS>& matrix1, const Matrix<T, ROWS, COLS>& matrix2)
{
ispc::MulByElement(matrix1, matrix2, result, ROWS * COLS);
}
template <int ROWS, int COLS>
void MatrixMulByElementi32(Matrix<int32_t, ROWS, COLS>& result, const Matrix<int32_t, ROWS, COLS>& matrix1, const Matrix<int32_t, ROWS, COLS>& matrix2)
{
ispc::MulByElementi32(matrix1, matrix2, result, ROWS * COLS);
}
template <typename T, int ROWS, int COLS>
Matrix<T, ROWS, COLS> operator-(const Matrix<T, ROWS, COLS>& matrix1, const Matrix<T, ROWS, COLS>& matrix2)
{
Matrix<T, ROWS, COLS> result;
MatrixSub(result, matrix1, matrix2);
return result;
}
template <typename T, int Da, int Db, int Dc>
void MatrixMultiply(Matrix<T, Da, Dc>& result, const Matrix<T, Da, Db>& matrix1, const Matrix<T, Dc, Db>& matrix2)
{
Matrix<T, Dc, Db> matrix2_transpose;
Transpose(matrix2_transpose, matrix2);
for (int i = 0; i < Da; i++) {
for (int j = 0; j < Dc; j++) {
DotProduct(result[i][j], matrix1[i], matrix2_transpose[j]);
}
}
return;
}
template <typename T, int ROWS, int COLS>
Matrix<T, ROWS, COLS> operator*(const Matrix<T, ROWS, COLS>& matrix1, const Matrix<T, ROWS, COLS>& matrix2)
{
Matrix<T, ROWS, COLS> result;
MatrixMultiply(result, matrix1, matrix2);
return result;
}
template <typename T, int ROWS, int COLS>
Matrix<T, ROWS, COLS> operator*(const Matrix<T, ROWS, COLS>& matrix, const Scalar scalar)
{
Matrix<T, ROWS, COLS> result;
for (int i = 0; i < ROWS; i++)
{
result[i] = matrix[i] * scalar;
}
return result;
}
template <typename T, int ROWS, int COLS>
Matrix<T, ROWS, COLS> operator*(const Scalar scalar, const Matrix<T, ROWS, COLS>& matrix)
{
return matrix * scalar;
}
template <typename T, int ROWS1, int COLS1, int ROWS2, int COLS2>
void Shrink(Matrix<T, ROWS1, COLS1>& matrix1, const Matrix<T, ROWS2, COLS2>& matrix2)
{
static_assert(ROWS1 < ROWS2, "[Error] Target matrix ROWS must smaller than source matrix ROWS!");
static_assert(COLS1 < COLS2, "[Error] Target matrix COLS must smaller than source matrix COLS!");
const size_t size = sizeof(T) * COLS1;
for (int i = 0; i < ROWS1; i++)
{
std::memcpy(matrix1[i], matrix2[i], size);
}
}
template <typename T, int ROWS, int COLS>
void Absolute(Matrix<T, ROWS, COLS>& result, const Matrix<T, ROWS, COLS>& matrix)
{
ispc::Absolute(result, matrix, ROWS * COLS);
}
template <typename T, int ROWS, int COLS>
inline bool AlmostZero(const Matrix<T, ROWS, COLS>& matrix)
{
bool result = true;
for (int i = 0; i < ROWS; i++)
{
for (int j = 0; j < COLS; j++)
{
if (abs(matrix[i][j]) > std::numeric_limits<T>::epsilon())
{
result = false;
}
}
}
return result;
}
template <typename T, int ROWS, int COLS>
inline bool operator==(const Matrix<T, ROWS, COLS>& matrix1, const Matrix<T, ROWS, COLS>& matrix2)
{
return AlmostZero(matrix1 - matrix2);
}
template <typename T, int ROWS, int COLS>
inline bool operator!=(const Matrix<T, ROWS, COLS>& matrix1, const Matrix<T, ROWS, COLS>& matrix2)
{
return !(matrix1 == matrix2);
}
template <typename T, int ROWS, int COLS>
inline void Transpose(Matrix<T, ROWS, COLS>& result, const Matrix<T, ROWS, COLS>& matrix1)
{
ispc::Transpose(matrix1, result, ROWS, COLS);
}
template <typename T, int N>
inline T Trace(const Matrix<T, N, N>& matrix)
{
T result = (T)0;
for (int i = 0; i < N; i++)
{
result += matrix[i][i];
}
return result;
}
template <typename T, int ROWS, int COLS>
inline void DotProduct3(Vector<T, 3>& result, Vector<T, 3>& source, const Matrix<T, ROWS, COLS>& matrix)
{
static_assert(ROWS >= 3, "[Error] Only 3x3 and above matrix can be passed to this method!");
static_assert(COLS >= 3, "[Error] Only 3x3 and above matrix can be passed to this method!");
Vector<T, 3> basis[3] = {{matrix[0][0], matrix[1][0], matrix[2][0]},
{matrix[0][1], matrix[1][1], matrix[2][1]},
{matrix[0][2], matrix[1][2], matrix[2][2]},
};
DotProduct(result[0], source, basis[0]);
DotProduct(result[1], source, basis[1]);
DotProduct(result[2], source, basis[2]);
}
template <typename T, int ROWS, int COLS>
inline void GetOrigin(Vector<T, 3>& result, const Matrix<T, ROWS, COLS>& matrix)
{
static_assert(ROWS >= 3, "[Error] Only 3x3 and above matrix can be passed to this method!");
static_assert(COLS >= 3, "[Error] Only 3x3 and above matrix can be passed to this method!");
result = {matrix[3][0], matrix[3][1], matrix[3][2]};
}
inline void MatrixRotationYawPitchRoll(Matrix4X4f& matrix, const float yaw, const float pitch, const float roll)
{
float cYaw, cPitch, cRoll, sYaw, sPitch, sRoll;
// Get the cosine and sin of the yaw, pitch, and roll.
cYaw = std::cos(yaw);
cPitch = std::cos(pitch);
cRoll = std::cos(roll);
sYaw = std::sin(yaw);
sPitch = std::sin(pitch);
sRoll = std::sin(roll);
// Calculate the yaw, pitch, roll rotation matrix.
matrix = {{
{ (cRoll * cYaw) + (sRoll * sPitch * sYaw), (sRoll * cPitch), (cRoll * -sYaw) + (sRoll * sPitch * cYaw), 0.0f },
{ (-sRoll * cYaw) + (cRoll * sPitch * sYaw), (cRoll * cPitch), (sRoll * sYaw) + (cRoll * sPitch * cYaw), 0.0f },
{ (cPitch * sYaw), -sPitch, (cPitch * cYaw), 0.0f },
{ 0.0f, 0.0f, 0.0f, 1.0f }
}};
return;
}
inline void TransformCoord(Vector3f& vector, const Matrix4X4f& matrix)
{
Vector4f tmp ({vector[0], vector[1], vector[2], 1.0f});
ispc::Transform(tmp, matrix);
std::memcpy(&vector, &tmp, sizeof(vector));
}
inline void Transform(Vector4f& vector, const Matrix4X4f& matrix)
{
ispc::Transform(vector, matrix);
return;
}
template <typename T, int ROWS, int COLS>
inline void ExchangeYandZ(Matrix<T,ROWS,COLS>& matrix)
{
ispc::MatrixExchangeYandZ(matrix, ROWS, COLS);
}
inline void BuildViewLHMatrix(Matrix4X4f& result, const Vector3f position, const Vector3f lookAt, const Vector3f up)
{
Vector3f zAxis, xAxis, yAxis;
float result1, result2, result3;
zAxis = lookAt - position;
Normalize(zAxis);
CrossProduct(xAxis, up, zAxis);
Normalize(xAxis);
CrossProduct(yAxis, zAxis, xAxis);
DotProduct(result1, xAxis, position);
result1 = -result1;
DotProduct(result2, yAxis, position);
result2 = -result2;
DotProduct(result3, zAxis, position);
result3 = -result3;
// Set the computed values in the view matrix.
Matrix4X4f tmp = {{
{ xAxis[0], yAxis[0], zAxis[0], 0.0f },
{ xAxis[1], yAxis[1], zAxis[1], 0.0f },
{ xAxis[2], yAxis[2], zAxis[2], 0.0f },
{ result1, result2, result3, 1.0f }
}};
result = tmp;
}
inline void BuildViewRHMatrix(Matrix4X4f& result, const Vector3f position, const Vector3f lookAt, const Vector3f up)
{
Vector3f zAxis, xAxis, yAxis;
float result1, result2, result3;
zAxis = position - lookAt;
Normalize(zAxis);
CrossProduct(xAxis, up, zAxis);
Normalize(xAxis);
CrossProduct(yAxis, zAxis, xAxis);
DotProduct(result1, xAxis, position);
result1 = -result1;
DotProduct(result2, yAxis, position);
result2 = -result2;
DotProduct(result3, zAxis, position);
result3 = -result3;
// Set the computed values in the view matrix.
Matrix4X4f tmp = {{
{ xAxis[0], yAxis[0], zAxis[0], 0.0f },
{ xAxis[1], yAxis[1], zAxis[1], 0.0f },
{ xAxis[2], yAxis[2], zAxis[2], 0.0f },
{ result1, result2, result3, 1.0f }
}};
result = tmp;
}
template<typename T, int N>
inline void BuildIdentityMatrix(Matrix<T, N, N>& matrix)
{
ispc::BuildIdentityMatrix(matrix, N);
}
inline void BuildOrthographicMatrix(Matrix4X4f& matrix, const float left, const float right, const float top, const float bottom, const float near_plane, const float far_plane)
{
const float width = right - left;
const float height = top - bottom;
const float depth = far_plane - near_plane;
matrix = {{
{ 2.0f / width, 0.0f, 0.0f, 0.0f },
{ 0.0f, 2.0f / height, 0.0f, 0.0f },
{ 0.0f, 0.0f, - 2.0f / depth, 0.0f },
{ - (right + left) / width, - (top + bottom) / height, - (far_plane + near_plane) / depth, 1.0f }
}};
return;
}
inline void BuildPerspectiveFovLHMatrix(Matrix4X4f& matrix, const float fieldOfView, const float screenAspect, const float screenNear, const float screenDepth)
{
Matrix4X4f perspective = {{
{ 1.0f / (screenAspect * std::tan(fieldOfView * 0.5f)), 0.0f, 0.0f, 0.0f },
{ 0.0f, 1.0f / std::tan(fieldOfView * 0.5f), 0.0f, 0.0f },
{ 0.0f, 0.0f, screenDepth / (screenDepth - screenNear), 1.0f },
{ 0.0f, 0.0f, (-screenNear * screenDepth) / (screenDepth - screenNear), 0.0f }
}};
matrix = perspective;
return;
}
inline void BuildPerspectiveFovRHMatrix(Matrix4X4f& matrix, const float fieldOfView, const float screenAspect, const float screenNear, const float screenDepth)
{
Matrix4X4f perspective = {{
{ 1.0f / (screenAspect * std::tan(fieldOfView * 0.5f)), 0.0f, 0.0f, 0.0f },
{ 0.0f, 1.0f / std::tan(fieldOfView * 0.5f), 0.0f, 0.0f },
{ 0.0f, 0.0f, screenDepth / (screenNear - screenDepth), -1.0f },
{ 0.0f, 0.0f, (-screenNear * screenDepth) / (screenDepth - screenNear), 0.0f }
}};
matrix = perspective;
return;
}
inline void MatrixTranslation(Matrix4X4f& matrix, const float x, const float y, const float z)
{
Matrix4X4f translation = {{
{ 1.0f, 0.0f, 0.0f, 0.0f},
{ 0.0f, 1.0f, 0.0f, 0.0f},
{ 0.0f, 0.0f, 1.0f, 0.0f},
{ x, y, z, 1.0f}
}};
matrix = translation;
return;
}
inline void MatrixTranslation(Matrix4X4f& matrix, const Vector3f& v)
{
MatrixTranslation(matrix, v[0], v[1], v[2]);
}
inline void MatrixTranslation(Matrix4X4f& matrix, const Vector4f& v)
{
assert(v[3]);
MatrixTranslation(matrix, v[0]/v[3], v[1]/v[3], v[2]/v[3]);
}
inline void MatrixRotationX(Matrix4X4f& matrix, const float angle)
{
const float c = std::cos(angle), s = std::sin(angle);
matrix = {{
{ 1.0f, 0.0f, 0.0f, 0.0f },
{ 0.0f, c, s, 0.0f },
{ 0.0f, -s, c, 0.0f },
{ 0.0f, 0.0f, 0.0f, 1.0f },
}};
return;
}
inline void MatrixRotationY(Matrix4X4f& matrix, const float angle)
{
const float c = std::cos(angle), s = std::sin(angle);
matrix = {{
{ c, 0.0f, -s, 0.0f },
{ 0.0f, 1.0f, 0.0f, 0.0f },
{ s, 0.0f, c, 0.0f },
{ 0.0f, 0.0f, 0.0f, 1.0f },
}};
return;
}
inline void MatrixRotationZ(Matrix4X4f& matrix, const float angle)
{
const float c = std::cos(angle), s = std::sin(angle);
matrix = {{
{ c, s, 0.0f, 0.0f },
{ -s, c, 0.0f, 0.0f },
{ 0.0f, 0.0f, 1.0f, 0.0f },
{ 0.0f, 0.0f, 0.0f, 1.0f }
}};
return;
}
inline void MatrixRotationAxis(Matrix4X4f& matrix, const Vector3f& axis, const float angle)
{
float c = std::cos(angle), s = std::sin(angle), one_minus_c = 1.0f - c;
Matrix4X4f rotation = {{
{ c + axis[0] * axis[0] * one_minus_c, axis[0] * axis[1] * one_minus_c + axis[2] * s, axis[0] * axis[2] * one_minus_c - axis[1] * s, 0.0f },
{ axis[0] * axis[1] * one_minus_c - axis[2] * s, c + axis[1] * axis[1] * one_minus_c, axis[1] * axis[2] * one_minus_c + axis[0] * s, 0.0f },
{ axis[0] * axis[2] * one_minus_c + axis[1] * s, axis[1] * axis[2] * one_minus_c - axis[0] * s, c + axis[2] * axis[2] * one_minus_c, 0.0f },
{ 0.0f, 0.0f, 0.0f, 1.0f }
}};
matrix = rotation;
}
template<typename T>
inline void MatrixRotationQuaternion(Matrix4X4f& matrix, Quaternion<T> q)
{
Matrix4X4f rotation = {{
{ 1.0f - 2.0f * q[1] * q[1] - 2.0f * q[2] * q[2], 2.0f * q[0] * q[1] + 2.0f * q[3] * q[2], 2.0f * q[0] * q[2] - 2.0f * q[3] * q[1], 0.0f },
{ 2.0f * q[0] * q[1] - 2.0f * q[3] * q[2], 1.0f - 2.0f * q[0] * q[0] - 2.0f * q[2] * q[2], 2.0f * q[1] * q[2] + 2.0f * q[3] * q[0], 0.0f },
{ 2.0f * q[0] * q[2] + 2.0f * q[3] * q[1], 2.0f * q[1] * q[2] - 2.0f * q[1] * q[2] - 2.0f * q[3] * q[0], 1.0f - 2.0f * q[0] * q[0] - 2.0f * q[1] * q[1], 0.0f },
{ 0.0f, 0.0f, 0.0f, 1.0f }
}};
matrix = rotation;
}
inline void MatrixScale(Matrix4X4f& matrix, const float x, const float y, const float z)
{
Matrix4X4f scale = {{
{ x, 0.0f, 0.0f, 0.0f},
{ 0.0f, y, 0.0f, 0.0f},
{ 0.0f, 0.0f, z, 0.0f},
{ 0.0f, 0.0f, 0.0f, 1.0f},
}};
matrix = scale;
return;
}
inline void MatrixScale(Matrix4X4f& matrix, const Vector3f& v)
{
MatrixScale(matrix, v[0], v[1], v[2]);
}
inline void MatrixScale(Matrix4X4f& matrix, const Vector4f& v)
{
assert(v[3]);
MatrixScale(matrix, v[0]/v[3], v[1]/v[3], v[2]/v[3]);
}
inline bool InverseMatrix3X3f(Matrix3X3f& matrix)
{
return ispc::InverseMatrix3X3f(matrix);
}
inline bool InverseMatrix4X4f(Matrix4X4f& matrix)
{
return ispc::InverseMatrix4X4f(matrix);
}
inline Matrix8X8f DCT8X8(const Matrix8X8f& matrix)
{
Matrix8X8f result;
ispc::DCT8X8(matrix, result);
return result;
}
inline Matrix8X8f IDCT8X8(const Matrix8X8f& matrix)
{
Matrix8X8f result;
ispc::IDCT8X8(matrix, result);
return result;
}
typedef Vector<float, 2> Point2D;
typedef std::shared_ptr<Point2D> Point2DPtr;
typedef std::vector<Point2DPtr> Point2DList;
typedef Vector<float, 3> Point;
typedef std::shared_ptr<Point> PointPtr;
typedef std::unordered_set<PointPtr> PointSet;
typedef std::vector<PointPtr> PointList;
typedef std::pair<PointPtr, PointPtr> Edge;
inline bool operator==(const Edge& a, const Edge& b)
{
return (a.first == b.first && a.second == b.second) || (a.first == b.second && a.second == b.first);
}
typedef std::shared_ptr<Edge> EdgePtr;
inline bool operator==(const EdgePtr& a, const EdgePtr& b)
{
return (a->first == b->first && a->second == b->second) || (a->first == b->second && a->second == b->first);
}
typedef std::unordered_set<EdgePtr> EdgeSet;
typedef std::vector<EdgePtr> EdgeList;
struct Face {
EdgeList Edges;
Vector3f Normal;
PointList GetVertices() const
{
PointList vertices;
for (auto edge : Edges)
{
vertices.push_back(edge->first);
}
return vertices;
}
};
typedef std::shared_ptr<Face> FacePtr;
typedef std::unordered_set<FacePtr> FaceSet;
typedef std::vector<FacePtr> FaceList;
inline float PointToPlaneDistance(const PointList& vertices, const Point& point)
{
Vector3f normal;
float distance;
assert(vertices.size() > 2);
auto A = vertices[0];
auto B = vertices[1];
auto C = vertices[2];
CrossProduct(normal, *B - *A, *C - *A);
Normalize(normal);
DotProduct(distance, normal, point - *A);
return distance;
}
inline bool isPointAbovePlane(const PointList& vertices, const Point& point)
{
return PointToPlaneDistance(vertices, point) > 0;
}
inline bool isPointAbovePlane(const FacePtr& pface, const Point& point)
{
assert(pface->Edges.size() > 2);
PointList vertices = {pface->Edges[0]->first, pface->Edges[1]->first, pface->Edges[2]->first};