()
| 195 | |
| 196 | @image_comparison(['polar_invertedylim_rorigin.png'], style='default') |
| 197 | def test_polar_invertedylim_rorigin(): |
| 198 | fig = plt.figure() |
| 199 | ax = fig.add_axes((0.1, 0.1, 0.8, 0.8), polar=True) |
| 200 | ax.yaxis.set_inverted(True) |
| 201 | # Set the rlims to inverted (2, 0) without calling set_rlim, to check that |
| 202 | # viewlims are correctly unstaled before draw()ing. |
| 203 | ax.plot([0, 0], [0, 2], c="none") |
| 204 | ax.margins(0) |
| 205 | ax.set_rorigin(3) |
| 206 | |
| 207 | |
| 208 | @image_comparison(['polar_theta_position.png'], style='default') |
nothing calls this directly
no test coverage detected
searching dependent graphs…