(self, args)
| 634 | |
| 635 | |
| 636 | def start_polygon(self, args): |
| 637 | self.pack_slide('polygon', args) |
| 638 | self._curPolygon = pythonpoint.PPPolygon(self.ceval('polygon',args,'points')) |
| 639 | self._curPolygon.strokeColor = self.ceval('polygon',args,'stroke') |
| 640 | self._curPolygon.fillColor = self.ceval('polygon',args,'fill') |
| 641 | |
| 642 | |
| 643 | def end_polygon(self): |
nothing calls this directly
no test coverage detected