(self, x, y, width, height, theta)
| 90 | |
| 91 | class Ellipse: |
| 92 | def __init__(self, x, y, width, height, theta): |
| 93 | self.x = x |
| 94 | self.y = y |
| 95 | self.width = width |
| 96 | self.height = height |
| 97 | self.theta = theta # in radians |
| 98 | self._geometry = None |
| 99 | |
| 100 | @property |
| 101 | def parameters(self): |