(self, gc, path, transform, rgbFace=None)
| 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( |
nothing calls this directly
no test coverage detected