()
| 163 | |
| 164 | @image_comparison(['polar_negative_rmin.png'], style='default') |
| 165 | def test_polar_negative_rmin(): |
| 166 | r = np.arange(-3.0, 0.0, 0.01) |
| 167 | theta = 2*np.pi*r |
| 168 | |
| 169 | fig = plt.figure() |
| 170 | ax = fig.add_axes((0.1, 0.1, 0.8, 0.8), polar=True) |
| 171 | ax.plot(theta, r) |
| 172 | ax.set_rmax(0.0) |
| 173 | ax.set_rmin(-3.0) |
| 174 | |
| 175 | |
| 176 | @image_comparison(['polar_rorigin.png'], style='default') |