diff options
Diffstat (limited to 'include/vector2.hpp')
-rw-r--r-- | include/vector2.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/vector2.hpp b/include/vector2.hpp index d335a4b..c1148da 100644 --- a/include/vector2.hpp +++ b/include/vector2.hpp @@ -66,6 +66,11 @@ struct vector2 { return vector2<T>(x / n, y / n); } + vector2<T> operator/=(const T& n) { + x /= n, y /= n; + return *this; + } + // compare bool operator==(const vector2<T>& v) const { return (x == v.x) && (y == v.y); |