MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / test_polar_negative_rmin

Function test_polar_negative_rmin

lib/matplotlib/tests/test_polar.py:165–173  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

163
164@image_comparison(['polar_negative_rmin.png'], style='default')
165def 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')

Callers

nothing calls this directly

Calls 5

figureMethod · 0.80
add_axesMethod · 0.80
set_rmaxMethod · 0.80
set_rminMethod · 0.80
plotMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…