(path, transform, clip=None, simplify=None, sketch=None)
| 1479 | |
| 1480 | @staticmethod |
| 1481 | def pathOperations(path, transform, clip=None, simplify=None, sketch=None): |
| 1482 | return [Verbatim(_path.convert_to_string( |
| 1483 | path, transform, clip, simplify, sketch, |
| 1484 | 6, |
| 1485 | [Op.moveto.op, Op.lineto.op, b'', Op.curveto.op, Op.closepath.op], |
| 1486 | True))] |
| 1487 | |
| 1488 | def writePath(self, path, transform, clip=False, sketch=None): |
| 1489 | if clip: |
no test coverage detected