Added unary negative to Vector2
This is the only fragment I'm bothering to salvage from the collisions branch.
This commit is contained in:
@@ -92,6 +92,10 @@ public:
|
||||
return ret;
|
||||
}
|
||||
|
||||
//unary operators
|
||||
Vector2 operator-() { return {-x, -y}; }
|
||||
|
||||
//comparison operators
|
||||
bool operator==(Vector2 v) { return (x == v.x && y == v.y); }
|
||||
bool operator!=(Vector2 v) { return (x != v.x || y != v.y); }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user