diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-02-11 11:24:52 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-02-11 11:24:52 -0500 |
commit | ea60f9f78bac505a5aeeb4d34b927f04ec3121b3 (patch) | |
tree | 15c617c9293c5a3b1011be0a19cb85396f49a3fc /include/vector2.hpp | |
parent | 27892bc40122494385bdbe5eb84aee52737f9c13 (diff) |
world bg, other fixes
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); |