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

Method _pgf_path_draw

lib/matplotlib/backends/backend_pgf.py:625–631  ·  view source on GitHub ↗
(self, stroke=True, fill=False)

Source from the content-addressed store, hash-verified

623 _writeln(self.fh, r"\pgfdecoratecurrentpath{random steps}")
624
625 def _pgf_path_draw(self, stroke=True, fill=False):
626 actions = []
627 if stroke:
628 actions.append("stroke")
629 if fill:
630 actions.append("fill")
631 _writeln(self.fh, r"\pgfusepath{%s}" % ",".join(actions))
632
633 def option_scale_image(self):
634 # docstring inherited

Callers 2

draw_markersMethod · 0.95
draw_pathMethod · 0.95

Calls 2

_writelnFunction · 0.85
joinMethod · 0.80

Tested by

no test coverage detected