|
Methods defined here:
- __eq__(self, other)
- Test for equality (==)
- __init__(self, x=0, y=0)
- Point constructor.
Set x and y coordinates (both default to 0)
- __str__(self)
- String representation of self
- get_r(self)
- Get the polar coordinate radius
- get_theta(self)
- Get the polar coordinate theta
- get_x(self)
- Get the private attribute x
- get_y(self)
- Get the private attribute y
- rotate(self, angle)
- Rotate self over angle
- set_x(self, x=0)
- Set the private attribute x
- set_y(self, y=0)
- Set the private attribute y
- translate(self, delta_x, delta_y)
- Translate self over delta_x, delta_y
|