(self, other)
| 38 | return False |
| 39 | |
| 40 | def __add__(self, other): |
| 41 | if isinstance(other, Vector2Ex): |
| 42 | return Vector2Ex(self.x + other.x, self.y + other.y) |
| 43 | return Vector2Ex(self.x + other, self.y + other) |
| 44 | |
| 45 | def __iadd__(self, other): |
| 46 | if isinstance(other, Vector2Ex): |