(ax)
| 281 | |
| 282 | |
| 283 | def erase_artists(ax): |
| 284 | for artist in ax.lines + ax.collections + ax.artists + ax.patches + ax.images: |
| 285 | artist.remove() |
| 286 | ax.figure.canvas.draw_idle() |
| 287 | |
| 288 | |
| 289 | def prepare_figure_axes(width, height, scale=1.0, dpi=100): |
no test coverage detected