Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c926c26

Browse files
committed
examples/pylab_examples/dolphin.py: fix zorder issue
svn path=/trunk/matplotlib/; revision=7961
1 parent 75f665d commit c926c26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pylab_examples/dolphin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
im = plt.imshow(np.random.random((100, 100)),
2121
origin='lower', cmap=cm.winter,
2222
interpolation='spline36',
23-
extent=([-1, 1, -1, 1]), zorder=1000)
23+
extent=([-1, 1, -1, 1]))
2424
im.set_clip_path(circle)
2525

2626
plt.plot(x, y, 'o', color=(0.9, 0.9, 1.0), alpha=0.8)

0 commit comments

Comments
 (0)