(self, other)
| 73 | return Vector2Ex(other - self.x, other - self.y) |
| 74 | |
| 75 | def __mul__(self, other): |
| 76 | if isinstance(other, Vector2Ex): |
| 77 | res = vector2_multiply(self, other) |
| 78 | return self.to_Vec2(res) |
| 79 | return Vector2Ex(self.x * other, self.y * other) |
| 80 | |
| 81 | def __imul__(self, other): |
| 82 | if isinstance(other, Vector2Ex): |