(self, renderer, gc, tpath, affine, rgbFace)
| 362 | self.patch = mpatches.PathPatch([], **kwargs) |
| 363 | |
| 364 | def draw_path(self, renderer, gc, tpath, affine, rgbFace): |
| 365 | self.patch._path = tpath |
| 366 | self.patch.set_transform(affine + self._offset_transform(renderer)) |
| 367 | self.patch.set_clip_box(gc.get_clip_rectangle()) |
| 368 | clip_path = gc.get_clip_path() |
| 369 | if clip_path and self.patch.get_clip_path() is None: |
| 370 | self.patch.set_clip_path(*clip_path) |
| 371 | self.patch.draw(renderer) |
| 372 | |
| 373 | |
| 374 | class TickedStroke(AbstractPathEffect): |
nothing calls this directly
no test coverage detected