1
0

Unified Matrix4 code

This commit is contained in:
andrew
2014-03-11 18:32:33 +02:00
parent d64db443c2
commit 9810d57a39
7 changed files with 230 additions and 233 deletions

View File

@@ -22,7 +22,7 @@ public:
T x, y, z;
inline Vector3() : x(0), y(0), z(0) {}
inline Vector3(void) : x(0), y(0), z(0) {}
inline Vector3(T a_x, T a_y, T a_z) : x(a_x), y(a_y), z(a_z) {}