(orig_handle, xdescent, ydescent, width, height)
| 365 | |
| 366 | @staticmethod |
| 367 | def _create_patch(orig_handle, xdescent, ydescent, width, height): |
| 368 | return Rectangle(xy=(-xdescent, -ydescent), width=width, |
| 369 | height=height, color=orig_handle.get_facecolor()) |
| 370 | |
| 371 | @staticmethod |
| 372 | def _create_line(orig_handle, width, height): |
no test coverage detected