(self, p1, p2)
| 645 | class Line(_BBox): |
| 646 | |
| 647 | def __init__(self, p1, p2): |
| 648 | _BBox.__init__(self, p1, p2, ["arrow","fill","width"]) |
| 649 | self.setFill(DEFAULT_CONFIG['outline']) |
| 650 | self.setOutline = self.setFill |
| 651 | |
| 652 | def clone(self): |
| 653 | other = Line(self.p1, self.p2) |