(self, x, y)
| 528 | |
| 529 | class Point(GraphicsObject): |
| 530 | def __init__(self, x, y): |
| 531 | GraphicsObject.__init__(self, ["outline", "fill"]) |
| 532 | self.setFill = self.setOutline |
| 533 | self.x = x |
| 534 | self.y = y |
| 535 | |
| 536 | def _draw(self, canvas, options): |
| 537 | x,y = canvas.toScreen(self.x,self.y) |