aboutsummaryrefslogtreecommitdiffstats
path: root/include/vector2.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-03-14 18:19:06 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-03-14 18:19:06 -0400
commitba651a82d585c181e9632fadba5bb4d683842d44 (patch)
tree8b2711866d497dfd471903c603e2f33bd4a41a5a /include/vector2.hpp
parenta7d7d7e687cde01ed2d2ec2adb6ee5bfff8bbddc (diff)
better slash, scale fixes
Diffstat (limited to 'include/vector2.hpp')
-rw-r--r--include/vector2.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/vector2.hpp b/include/vector2.hpp
index 828654c..5671ccd 100644
--- a/include/vector2.hpp
+++ b/include/vector2.hpp
@@ -57,6 +57,11 @@ struct vector2 {
return vector2<T>(x * n, y * n);
}
+ vector2<T> operator*=(const T& n) {
+ x *= n, y *= n;
+ return *this;
+ }
+
// division
vector2<T> operator/(const vector2<T>& v) const {
return vector2<T>(x / v.x, y / v.y);