(self, other)
| 269 | r = self.x * self.x + self.y * self.y |
| 270 | return self.__class__(other * (self.x / r), other * (self.y / r)) |
| 271 | def __rpow__(self, other): |
| 272 | return Polar(other ** self.x, math.log(other) * self.y) |
| 273 | def __complex__(self): |
| 274 | return complex(self.x, self.y) |
| 275 | def __eq__(self, other): |