(self, other)
| 56 | return self + other |
| 57 | |
| 58 | def __sub__(self, other): |
| 59 | if isinstance(other, Vector2Ex): |
| 60 | return Vector2Ex(self.x - other.x, self.y - other.y) |
| 61 | return Vector2Ex(self.x - other, self.y - other) |
| 62 | |
| 63 | def __isub__(self, other): |
| 64 | if isinstance(other, Vector2Ex): |