diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-11-20 12:07:07 +0100 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-11-20 12:07:07 +0100 |
commit | bdc81e355e5bee5d2a3e29346ba08f7bc55196ca (patch) | |
tree | a5a62ba0b7fd5a354b6523cff768099281d317a1 /src/crepe/api/Vector2.h | |
parent | 88f613cbb2e4aaf3ed55ac0c6490706dd6f6f19d (diff) |
adjusted branch based on feedback
Diffstat (limited to 'src/crepe/api/Vector2.h')
-rw-r--r-- | src/crepe/api/Vector2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crepe/api/Vector2.h b/src/crepe/api/Vector2.h index 2a5db1d..790160d 100644 --- a/src/crepe/api/Vector2.h +++ b/src/crepe/api/Vector2.h @@ -18,6 +18,7 @@ struct Vector2 { //! Multiplies this vector by a scalar and returns the result. Vector2 operator*(double scalar) const; + //! Multiplies this vector by another vector element-wise and updates this vector. Vector2 operator*(const Vector2 & other) const; //! Multiplies this vector by another vector element-wise and updates this vector. @@ -26,6 +27,7 @@ struct Vector2 { //! Multiplies a scalar value to both components of this vector and updates this vector. Vector2 & operator*=(const double & other); + //! Divides this vector by another vector element-wise and updates this vector. Vector2 operator/(const Vector2 & other) const; //! Adds another vector to this vector and updates this vector. |