aboutsummaryrefslogtreecommitdiffstats
path: root/include/vector2.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-03-17 22:17:30 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-03-17 22:17:30 -0400
commit19ade83b74aa66c80129409d97c2c98fa8b8534c (patch)
treeed8fdfb53a302d1e236cb74b7f0413f83f55020d /include/vector2.hpp
parentbf01660ab468f49d63a133c28131ab21bba3a1a1 (diff)
bow & arrow draft
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;