(self, canv)
| 792 | self.lineWidth=0 |
| 793 | |
| 794 | def drawOn(self, canv): |
| 795 | canv.saveState() |
| 796 | canv.setLineWidth(self.lineWidth) |
| 797 | if self.strokeColor: |
| 798 | r,g,b = checkColor(self.strokeColor) |
| 799 | canv.setStrokeColorRGB(r,g,b) |
| 800 | canv.line(self.x1, self.y1, self.x2, self.y2) |
| 801 | canv.restoreState() |
| 802 | |
| 803 | |
| 804 | class PPEllipse: |
no test coverage detected