summaryrefslogtreecommitdiff
path: root/Runtime/Math/Matrix44.h
diff options
context:
space:
mode:
Diffstat (limited to 'Runtime/Math/Matrix44.h')
-rw-r--r--Runtime/Math/Matrix44.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/Runtime/Math/Matrix44.h b/Runtime/Math/Matrix44.h
index 1ec92fd..0fbf4a7 100644
--- a/Runtime/Math/Matrix44.h
+++ b/Runtime/Math/Matrix44.h
@@ -2,8 +2,20 @@
namespace Internal
{
- class Matrix44
+ struct Matrix44
{
+ Matrix44()
+ {
+ m[0][0] = 1;
+ m[1][1] = 1;
+ m[2][2] = 1;
+ m[3][3] = 1;
+ }
+
+ float m[4][4]; // ÐÐÖ÷Ïî
+
+ static Matrix44 identity;
};
-}
+
+} \ No newline at end of file