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

Method draw_path

lib/matplotlib/backends/backend_ps.py:613–618  ·  view source on GitHub ↗
(self, gc, path, transform, rgbFace=None)

Source from the content-addressed store, hash-verified

611
612 @_log_if_debug_on
613 def draw_path(self, gc, path, transform, rgbFace=None):
614 # docstring inherited
615 clip = rgbFace is None and gc.get_hatch_path() is None
616 simplify = path.should_simplify and clip
617 ps = self._convert_path(path, transform, clip=clip, simplify=simplify)
618 self._draw_ps(ps, gc, rgbFace)
619
620 @_log_if_debug_on
621 def draw_markers(

Callers

nothing calls this directly

Calls 3

_convert_pathMethod · 0.95
_draw_psMethod · 0.95
get_hatch_pathMethod · 0.80

Tested by

no test coverage detected