()
| 9971 | |
| 9972 | @image_comparison(["axhvlinespan_interpolation.png"], style="default") |
| 9973 | def test_axhvlinespan_interpolation(): |
| 9974 | ax = plt.figure().add_subplot(projection="polar") |
| 9975 | ax.set_axis_off() |
| 9976 | ax.axvline(.1, c="C0") |
| 9977 | ax.axvspan(.2, .3, fc="C1") |
| 9978 | ax.axvspan(.4, .5, .1, .2, fc="C2") |
| 9979 | ax.axhline(1, c="C0", alpha=.5) |
| 9980 | ax.axhspan(.8, .9, fc="C1", alpha=.5) |
| 9981 | ax.axhspan(.6, .7, .8, .9, fc="C2", alpha=.5) |
| 9982 | |
| 9983 | |
| 9984 | @check_figures_equal() |
nothing calls this directly
no test coverage detected
searching dependent graphs…