From ea60f9f78bac505a5aeeb4d34b927f04ec3121b3 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 11 Feb 2017 11:24:52 -0500 Subject: world bg, other fixes --- include/vector2.hpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/vector2.hpp') 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(x / n, y / n); } + vector2 operator/=(const T& n) { + x /= n, y /= n; + return *this; + } + // compare bool operator==(const vector2& v) const { return (x == v.x) && (y == v.y); -- cgit v1.2.3