Renders the existing Bézier path as a Flat vector graphic.
(self)
| 1160 | self.drawShapePath() |
| 1161 | |
| 1162 | def drawShapePath(self): |
| 1163 | """Renders the existing Bézier path as a Flat vector graphic.""" |
| 1164 | shape = self._getShape() |
| 1165 | |
| 1166 | if shape is not None: |
| 1167 | self.page.place(shape.path(self._bezierpath.commands)) |
| 1168 | |
| 1169 | def moveTo(self, p): |
| 1170 | p = self.translatePoint(p) |