(self, other)
| 88 | return self |
| 89 | |
| 90 | def __truediv__(self, other): |
| 91 | if isinstance(other, Vector2Ex): |
| 92 | res = vector2_divide(self, other) |
| 93 | return self.to_Vec2(res) |
| 94 | return Vector2Ex(self.x / other, self.y / other) |
| 95 | |
| 96 | def __itruediv__(self, other): |
| 97 | if isinstance(other, Vector2Ex): |