@@ -161,7 +161,7 @@ namespace NullX
161
161
// / Array representing elements of Vector3 -> [0] = x, [1] = y, [2] = z
162
162
float elements[3 ];
163
163
164
- // / Vector representing elements of Vector2 used for SIMD functions
164
+ // / Vector representing elements of Vector3 used for SIMD functions
165
165
__m128 elementsSIMD;
166
166
};
167
167
@@ -289,7 +289,7 @@ namespace NullX
289
289
// / Array representing elements of Vector4 -> [0] = x, [1] = y, [2] = z, [3] = w
290
290
float elements[4 ];
291
291
292
- // / Vector representing elements of Vector2 used for SIMD functions
292
+ // / Vector representing elements of Vector4 used for SIMD functions
293
293
__m128 elementsSIMD;
294
294
};
295
295
@@ -410,14 +410,14 @@ namespace NullX
410
410
float wx, wy, wz, ww;
411
411
};
412
412
413
- // / Array representing rows of matrix -> [0] = row1, [1] = row2, [2] = row3, [3] = row4
414
- Vector4 rows[4 ];
415
-
416
413
// / 2D Array representing elements of matrix
417
414
float matrix[4 ][4 ];
418
415
416
+ // / Array representing rows of matrix -> [0] = row1, [1] = row2, [2] = row3, [3] = row4
417
+ Vector4 rows[4 ];
418
+
419
419
// / Array representing rows of matrix used for SIMD functions
420
- __m128 matrixSIMD [4 ];
420
+ __m128 rowsSIMD [4 ];
421
421
};
422
422
423
423
// / Matrix4 representing 4x4 Identity matrix
@@ -448,6 +448,10 @@ namespace NullX
448
448
// / Calculates the LU Decomposition of the given Matrix4
449
449
static std::vector<Matrix4> LUDecomposition (Matrix4& mat);
450
450
451
+ // / Creates a 4x4 perspective projection matrix based off of the given parameters
452
+ static Matrix4 Perspective (const float fov, const float width, const float height, const float zNear, const float zFar);
453
+ // / Creates a 4x4 orthographic projection matrix based off of the given parameters
454
+ static Matrix4 Orthographic (const float top, const float bottom, const float right, const float left, const float zNear, const float zFar);
451
455
// / Creates a Translation matrix based off of the given values
452
456
static Matrix4 Translate (const float x, const float y, const float z);
453
457
// / Creates a Translation matrix based off of the given Vector3
@@ -547,18 +551,17 @@ namespace NullX
547
551
548
552
// / Array representing elements of Quaternion -> [0] = w, [1] = x, [2] = y, [3] = z
549
553
float elements[4 ];
554
+
555
+ // / Vector representing elements of Quaternion used for SIMD functions
556
+ __m128 elementsSIMD;
550
557
};
551
558
552
559
// / Quaternion Default Constructor
553
560
Quaternion ();
554
561
// / Quaternion Constructor. Sets elements equal to the elements in quat
555
562
Quaternion (const Quaternion& quat);
556
- // / Quaternion Constructor. Sets elements equal to the given values
557
- Quaternion ( const float _x, const float _y, const float _z, const float angle);
558
563
// / Quaternion Constructor. Sets elements equal to elements in Vector3 and angle
559
564
Quaternion ( const Vector3& vec, const float angle);
560
- // / Quaternion Constructor. Sets elements equal to elements in Vector4 and angle
561
- Quaternion ( const Vector4& vec, const float angle);
562
565
563
566
// / Normalizes Quaternion to unit length
564
567
void Normalize ();
@@ -608,36 +611,34 @@ namespace NullX
608
611
// / Calculates the value of num to the pow power
609
612
// / \return num^pow
610
613
extern constexpr float Pow (const float num, const int pow);
611
-
612
614
// / Calculates the value of e to the pow power
613
615
// / \return e^pow
614
616
extern constexpr float Exp (const int pow);
615
-
616
617
// / Calculates the absolute value of x
617
618
// / \return |x|
618
619
extern constexpr float Abs (const float x);
619
-
620
620
// / Calculates and returns the minimum value between x & y
621
621
// / \return minimum value between x & y
622
622
extern constexpr float Min (const float x, const float y);
623
-
624
623
// / Calculates and returns the maximum value between x & y
625
624
// / \return maximum value between x & y
626
625
extern constexpr float Max (const float x, const float y);
627
-
628
626
// / Clamps the value of num between min & max
629
627
// / \return num clamped between min & max
630
628
extern constexpr float Clamp (const float num, const float min, const float max);
631
-
632
629
// / Truncates num down to the nearest integer
633
630
// / \return num truncated down to nearest integer
634
631
extern constexpr float Floor (const float num);
635
-
636
632
// / Truncates num up to nearest integer
637
633
// / \return num truncates up to nearest integer
638
634
extern constexpr float Ceiling (const float num);
639
-
640
635
// / Rounds num to nearest integer
641
636
// / \return num rounded to nearest integer
642
637
extern constexpr float Round (const float num);
638
+ // / Transforms the given radian to degrees
639
+ // / \return rad in degreesw
640
+ extern constexpr float ToDegrees (const float rad);
641
+ // / Transforms the given degrees to radians
642
+ // / \return deg in radians
643
+ extern constexpr float ToRadians (const float deg);
643
644
}
0 commit comments