summaryrefslogtreecommitdiff
path: root/Runtime/Math/Math.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-11-04 13:49:05 +0800
committerchai <chaifix@163.com>2021-11-04 13:49:05 +0800
commitd7c051cecf0db9056e94d5e80146aa0b066e606b (patch)
treeda7a96046faa3323d1171d782164d3aae50ce322 /Runtime/Math/Math.h
parentd24f17b88d901b779c81c7434995675eb2a17429 (diff)
*text alignment
Diffstat (limited to 'Runtime/Math/Math.h')
-rw-r--r--Runtime/Math/Math.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/Runtime/Math/Math.h b/Runtime/Math/Math.h
index 80f23f7..0d1590e 100644
--- a/Runtime/Math/Math.h
+++ b/Runtime/Math/Math.h
@@ -8,11 +8,18 @@
#include "Rect.h"
#include "MathHelper.h"
-typedef Internal::Vector3 Vector3;
-typedef Internal::Vector4 Vector4;
+
typedef Internal::Matrix44 Matrix44;
typedef Internal::Rect Rect;
typedef Internal::Vector2T<int> Vector2i;
typedef Internal::Vector2T<float> Vector2f;
+typedef Vector2f Vector2;
+
+typedef Internal::Vector3T<float> Vector3f;
+typedef Internal::Vector3T<int> Vector3i;
+typedef Vector3f Vector3;
+typedef Internal::Vector4T<float> Vector4f;
+typedef Internal::Vector4T<int> Vector4i;
+typedef Vector4f Vector4;