summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vector.cpp4
-rw-r--r--vector.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/vector.cpp b/vector.cpp
index cf2c164..29fbdc7 100644
--- a/vector.cpp
+++ b/vector.cpp
@@ -83,6 +83,10 @@ bool Vector3::operator==(const Vector3& v) {
return x == v.x && y == v.y && z == v.z;
}
+bool Vector3::operator!=(const Vector3& v) {
+ return !(*this == v);
+}
+
Vector3& Vector3::operator+=(const Vector3& v) {
x += v.x;
y += v.y;
diff --git a/vector.h b/vector.h
index a2a3192..f88cc20 100644
--- a/vector.h
+++ b/vector.h
@@ -32,6 +32,7 @@ class Vector3 : public Vector2 {
Vector3(const Vector3& v);
Vector3(float x, float y, float z);
bool operator==(const Vector3& v);
+ bool operator!=(const Vector3& v);
Vector3& operator+=(const Vector3& v);
Vector3 operator+(const Vector3& v);
Vector3& operator-=(const Vector3& v);