(path, transform, clip=None, simplify=None, sketch=None)
| 1803 | |
| 1804 | @staticmethod |
| 1805 | def pathOperations(path, transform, clip=None, simplify=None, sketch=None): |
| 1806 | return [Verbatim(_path.convert_to_string( |
| 1807 | path, transform, clip, simplify, sketch, |
| 1808 | 6, |
| 1809 | [Op.moveto.value, Op.lineto.value, b'', Op.curveto.value, |
| 1810 | Op.closepath.value], |
| 1811 | True))] |
| 1812 | |
| 1813 | def writePath(self, path, transform, clip=False, sketch=None): |
| 1814 | if clip: |
no test coverage detected