Skip to content

Commit fef626c

Browse files
committed
Phases 3 & 4 Complete
- SIMD vectors, matrices & quaternions - Testing completed - need to come back to Quaternions
1 parent ad763b4 commit fef626c

30 files changed

+183
-173
lines changed

.vs/NullX/v14/.suo

0 Bytes
Binary file not shown.

NullX.sdf

-1 MB
Binary file not shown.

NullX/NullX.aps

-1.28 KB
Binary file not shown.

NullX/NullX.vcxproj

-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@
142142
</ItemDefinitionGroup>
143143
<ItemGroup>
144144
<ClInclude Include="include\NullX.h" />
145-
<ClInclude Include="resource.h" />
146145
</ItemGroup>
147146
<ItemGroup>
148147
<ClCompile Include="src\Core.cpp" />

NullX/NullX.vcxproj.filters

-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
<ClInclude Include="include\NullX.h">
1919
<Filter>Header Files</Filter>
2020
</ClInclude>
21-
<ClInclude Include="resource.h">
22-
<Filter>Header Files</Filter>
23-
</ClInclude>
2421
</ItemGroup>
2522
<ItemGroup>
2623
<ClCompile Include="src\Vector2.cpp">

NullX/build/Debug/NullX.lib

4.85 KB
Binary file not shown.

NullX/build/Debug/NullX.pdb

16 KB
Binary file not shown.

NullX/debug/x64/Debug/Core.obj

1.98 KB
Binary file not shown.

NullX/debug/x64/Debug/Matrix4.obj

4.28 KB
Binary file not shown.

NullX/debug/x64/Debug/NullX.idb

0 Bytes
Binary file not shown.

NullX/debug/x64/Debug/NullX.log

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
 Vector2.cpp
1+
 Quaternion.cpp
22
NullX.vcxproj -> C:\Users\CaptainKirk\Desktop\NullX\NullX\build\Debug\NullX.lib

NullX/debug/x64/Debug/NullX.pdb

16 KB
Binary file not shown.
146 Bytes
Binary file not shown.
790 Bytes
Binary file not shown.

NullX/debug/x64/Debug/Quaternion.obj

-1.87 KB
Binary file not shown.

NullX/debug/x64/Debug/Vector2.obj

0 Bytes
Binary file not shown.

NullX/debug/x64/Debug/Vector3.obj

0 Bytes
Binary file not shown.

NullX/debug/x64/Debug/Vector4.obj

0 Bytes
Binary file not shown.

NullX/include/NullX.h

+19-18
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ namespace NullX
161161
/// Array representing elements of Vector3 -> [0] = x, [1] = y, [2] = z
162162
float elements[3];
163163

164-
/// Vector representing elements of Vector2 used for SIMD functions
164+
/// Vector representing elements of Vector3 used for SIMD functions
165165
__m128 elementsSIMD;
166166
};
167167

@@ -289,7 +289,7 @@ namespace NullX
289289
/// Array representing elements of Vector4 -> [0] = x, [1] = y, [2] = z, [3] = w
290290
float elements[4];
291291

292-
/// Vector representing elements of Vector2 used for SIMD functions
292+
/// Vector representing elements of Vector4 used for SIMD functions
293293
__m128 elementsSIMD;
294294
};
295295

@@ -410,14 +410,14 @@ namespace NullX
410410
float wx, wy, wz, ww;
411411
};
412412

413-
/// Array representing rows of matrix -> [0] = row1, [1] = row2, [2] = row3, [3] = row4
414-
Vector4 rows[4];
415-
416413
/// 2D Array representing elements of matrix
417414
float matrix[4][4];
418415

416+
/// Array representing rows of matrix -> [0] = row1, [1] = row2, [2] = row3, [3] = row4
417+
Vector4 rows[4];
418+
419419
/// Array representing rows of matrix used for SIMD functions
420-
__m128 matrixSIMD[4];
420+
__m128 rowsSIMD[4];
421421
};
422422

423423
/// Matrix4 representing 4x4 Identity matrix
@@ -448,6 +448,10 @@ namespace NullX
448448
/// Calculates the LU Decomposition of the given Matrix4
449449
static std::vector<Matrix4> LUDecomposition(Matrix4& mat);
450450

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);
451455
/// Creates a Translation matrix based off of the given values
452456
static Matrix4 Translate(const float x, const float y, const float z);
453457
/// Creates a Translation matrix based off of the given Vector3
@@ -547,18 +551,17 @@ namespace NullX
547551

548552
/// Array representing elements of Quaternion -> [0] = w, [1] = x, [2] = y, [3] = z
549553
float elements[4];
554+
555+
/// Vector representing elements of Quaternion used for SIMD functions
556+
__m128 elementsSIMD;
550557
};
551558

552559
/// Quaternion Default Constructor
553560
Quaternion();
554561
/// Quaternion Constructor. Sets elements equal to the elements in quat
555562
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);
558563
/// Quaternion Constructor. Sets elements equal to elements in Vector3 and angle
559564
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);
562565

563566
/// Normalizes Quaternion to unit length
564567
void Normalize();
@@ -608,36 +611,34 @@ namespace NullX
608611
/// Calculates the value of num to the pow power
609612
/// \return num^pow
610613
extern constexpr float Pow(const float num, const int pow);
611-
612614
/// Calculates the value of e to the pow power
613615
/// \return e^pow
614616
extern constexpr float Exp(const int pow);
615-
616617
/// Calculates the absolute value of x
617618
/// \return |x|
618619
extern constexpr float Abs(const float x);
619-
620620
/// Calculates and returns the minimum value between x & y
621621
/// \return minimum value between x & y
622622
extern constexpr float Min(const float x, const float y);
623-
624623
/// Calculates and returns the maximum value between x & y
625624
/// \return maximum value between x & y
626625
extern constexpr float Max(const float x, const float y);
627-
628626
/// Clamps the value of num between min & max
629627
/// \return num clamped between min & max
630628
extern constexpr float Clamp(const float num, const float min, const float max);
631-
632629
/// Truncates num down to the nearest integer
633630
/// \return num truncated down to nearest integer
634631
extern constexpr float Floor(const float num);
635-
636632
/// Truncates num up to nearest integer
637633
/// \return num truncates up to nearest integer
638634
extern constexpr float Ceiling(const float num);
639-
640635
/// Rounds num to nearest integer
641636
/// \return num rounded to nearest integer
642637
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);
643644
}

NullX/resource.h

-14
This file was deleted.

NullX/src/Core.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,14 @@ namespace NullX
5959
{
6060
return (num - Floor(num) >= 0.5f) ? Ceiling(num) : Floor(num);
6161
}
62+
63+
constexpr float ToDegrees(const float rad)
64+
{
65+
return rad * 57.295779513f;
66+
}
67+
68+
constexpr float ToRadians(const float deg)
69+
{
70+
return deg * 0.0174532925f;
71+
}
6272
}

0 commit comments

Comments
 (0)