aboutsummaryrefslogtreecommitdiffstats
path: root/include/vector2.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/vector2.hpp')
-rw-r--r--include/vector2.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/vector2.hpp b/include/vector2.hpp
index 5671ccd..beb2787 100644
--- a/include/vector2.hpp
+++ b/include/vector2.hpp
@@ -48,6 +48,11 @@ struct vector2 {
return vector2<T>(x - n, y - n);
}
+ vector2<T> operator-=(const vector2<T>& v) {
+ x -= v.x, y -= v.y;
+ return *this;
+ }
+
// multiplication
vector2<T> operator*(const vector2<T>& v) const {
return vector2<T>(x * v.x, y * v.y);
@@ -57,6 +62,11 @@ struct vector2 {
return vector2<T>(x * n, y * n);
}
+ vector2<T> operator*=(const vector2<T>& v) {
+ x *= v.x, y *= v.y;
+ return *this;
+ }
+
vector2<T> operator*=(const T& n) {
x *= n, y *= n;
return *this;
@@ -71,6 +81,11 @@ struct vector2 {
return vector2<T>(x / n, y / n);
}
+ vector2<T> operator/=(const vector2<T>& v) {
+ x /= v.x, y /= v.y;
+ return *this;
+ }
+
vector2<T> operator/=(const T& n) {
x /= n, y /= n;
return *this;