From dcdf8538a8865f04af1fc5445cdc71753464df3e Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 19 Feb 2014 21:13:56 -0700 Subject: [PATCH] Adding more file/folder stubs. --- README.md | 2 +- tests/.gitkeep => include/Debug.h | 0 include/math/FixedPoint.h | 0 include/math/MathDefs.h | 0 include/math/Matrix.h | 0 include/math/Plane.h | 0 include/math/Quaternion.h | 0 include/math/Ray.h | 0 include/math/TransMatrix.h | 0 include/math/Vector2.h | 0 include/math/Vector3.h | 0 src/.gitkeep | 0 tests/main.cpp | 0 13 files changed, 1 insertion(+), 1 deletion(-) rename tests/.gitkeep => include/Debug.h (100%) create mode 100644 include/math/FixedPoint.h create mode 100644 include/math/MathDefs.h create mode 100644 include/math/Matrix.h create mode 100644 include/math/Plane.h create mode 100644 include/math/Quaternion.h create mode 100644 include/math/Ray.h create mode 100644 include/math/TransMatrix.h create mode 100644 include/math/Vector2.h create mode 100644 include/math/Vector3.h create mode 100644 src/.gitkeep create mode 100644 tests/main.cpp 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