diff options
Diffstat (limited to 'src/libjin/Math/je_vector2.hpp')
-rw-r--r-- | src/libjin/Math/je_vector2.hpp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/libjin/Math/je_vector2.hpp b/src/libjin/Math/je_vector2.hpp index a2b3371..e9599e1 100644 --- a/src/libjin/Math/je_vector2.hpp +++ b/src/libjin/Math/je_vector2.hpp @@ -1,5 +1,5 @@ -#ifndef __JE_VECTOR_H -#define __JE_VECTOR_H +#ifndef __JE_VECTOR_H__ +#define __JE_VECTOR_H__ namespace JinEngine { @@ -25,6 +25,18 @@ namespace JinEngine data[1] = v.data[1]; } + void operator = (const Vector2<T>& v) + { + data[0] = v.data[0]; + data[1] = v.data[1]; + } + + void set(T _x, T _y) + { + data[0] = _x; + data[1] = _y; + } + T &x = data[0], &y = data[1]; // xy T &w = data[0], &h = data[1]; // wh T &colum = data[0], &row = data[1]; // colum row |