MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / pathOperations

Method pathOperations

lib/matplotlib/backends/backend_pdf.py:1805–1811  ·  view source on GitHub ↗
(path, transform, clip=None, simplify=None, sketch=None)

Source from the content-addressed store, hash-verified

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:

Callers 5

writeHatchesMethod · 0.95
markerObjectMethod · 0.95
writePathMethod · 0.95
clip_cmdMethod · 0.80

Calls 1

VerbatimClass · 0.85

Tested by

no test coverage detected