(self, center, radius)
| 624 | class Circle(Oval): |
| 625 | |
| 626 | def __init__(self, center, radius): |
| 627 | p1 = Point(center.x-radius, center.y-radius) |
| 628 | p2 = Point(center.x+radius, center.y+radius) |
| 629 | Oval.__init__(self, p1, p2) |
| 630 | self.radius = radius |
| 631 | |
| 632 | def clone(self): |
| 633 | other = Circle(self.getCenter(), self.radius) |