|
From: <as...@us...> - 2009-11-12 23:07:51
|
Revision: 7961
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7961&view=rev
Author: astraw
Date: 2009-11-12 23:07:36 +0000 (Thu, 12 Nov 2009)
Log Message:
-----------
examples/pylab_examples/dolphin.py: fix zorder issue
Modified Paths:
--------------
trunk/matplotlib/examples/pylab_examples/dolphin.py
Modified: trunk/matplotlib/examples/pylab_examples/dolphin.py
===================================================================
--- trunk/matplotlib/examples/pylab_examples/dolphin.py 2009-11-12 23:05:45 UTC (rev 7960)
+++ trunk/matplotlib/examples/pylab_examples/dolphin.py 2009-11-12 23:07:36 UTC (rev 7961)
@@ -20,7 +20,7 @@
im = plt.imshow(np.random.random((100, 100)),
origin='lower', cmap=cm.winter,
interpolation='spline36',
- extent=([-1, 1, -1, 1]), zorder=1000)
+ extent=([-1, 1, -1, 1]))
im.set_clip_path(circle)
plt.plot(x, y, 'o', color=(0.9, 0.9, 1.0), alpha=0.8)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|