diff --git a/README.md b/README.md index f261c65..fb0376a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ math ==== -C++ GameDev related math helpers. These helpers will be designed for ease of use (a single header file for each helper class, and all helper functions in said class). In a commercial engine they would be designed out a little differently, broken up to some extent. +C++ GameDev related math helpers. These helpers will be designed for ease of use. In a commercial engine they would be designed out a little differently. These are primarily 3D math helpers, and do not contain any physics related code, collision, etc. Requirements ----------- diff --git a/tests/.gitkeep b/include/Debug.h similarity index 100% rename from tests/.gitkeep rename to include/Debug.h diff --git a/include/math/FixedPoint.h b/include/math/FixedPoint.h new file mode 100644 index 0000000..e69de29 diff --git a/include/math/MathDefs.h b/include/math/MathDefs.h new file mode 100644 index 0000000..e69de29 diff --git a/include/math/Matrix.h b/include/math/Matrix.h new file mode 100644 index 0000000..e69de29 diff --git a/include/math/Plane.h b/include/math/Plane.h new file mode 100644 index 0000000..e69de29 diff --git a/include/math/Quaternion.h b/include/math/Quaternion.h new file mode 100644 index 0000000..e69de29 diff --git a/include/math/Ray.h b/include/math/Ray.h new file mode 100644 index 0000000..e69de29 diff --git a/include/math/TransMatrix.h b/include/math/TransMatrix.h new file mode 100644 index 0000000..e69de29 diff --git a/include/math/Vector2.h b/include/math/Vector2.h new file mode 100644 index 0000000..e69de29 diff --git a/include/math/Vector3.h b/include/math/Vector3.h new file mode 100644 index 0000000..e69de29 diff --git a/src/.gitkeep b/src/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/tests/main.cpp b/tests/main.cpp new file mode 100644 index 0000000..e69de29