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

Method writePath

lib/matplotlib/backends/backend_pdf.py:1813–1822  ·  view source on GitHub ↗
(self, path, transform, clip=False, sketch=None)

Source from the content-addressed store, hash-verified

1811 True))]
1812
1813 def writePath(self, path, transform, clip=False, sketch=None):
1814 if clip:
1815 clip = (0.0, 0.0, self.width * 72, self.height * 72)
1816 simplify = path.should_simplify
1817 else:
1818 clip = None
1819 simplify = False
1820 cmds = self.pathOperations(path, transform, clip, simplify=simplify,
1821 sketch=sketch)
1822 self.output(*cmds)
1823
1824 def reserveObject(self, name=''):
1825 """

Callers 1

draw_pathMethod · 0.80

Calls 2

pathOperationsMethod · 0.95
outputMethod · 0.95

Tested by

no test coverage detected