|
From: <lee...@us...> - 2009-07-27 21:41:20
|
Revision: 7300
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7300&view=rev
Author: leejjoon
Date: 2009-07-27 21:41:12 +0000 (Mon, 27 Jul 2009)
Log Message:
-----------
axes_zoom_effect.py modified to use floats (instead of strings) for alpha values
Modified Paths:
--------------
trunk/matplotlib/examples/pylab_examples/axes_zoom_effect.py
Modified: trunk/matplotlib/examples/pylab_examples/axes_zoom_effect.py
===================================================================
--- trunk/matplotlib/examples/pylab_examples/axes_zoom_effect.py 2009-07-27 19:49:20 UTC (rev 7299)
+++ trunk/matplotlib/examples/pylab_examples/axes_zoom_effect.py 2009-07-27 21:41:12 UTC (rev 7300)
@@ -51,7 +51,7 @@
prop_patches=kwargs.copy()
prop_patches["ec"]="none"
- prop_patches["alpha"]="0.2"
+ prop_patches["alpha"]=0.2
c1, c2, bbox_patch1, bbox_patch2, p = \
connect_bbox(mybbox1, mybbox2,
@@ -84,7 +84,7 @@
prop_patches=kwargs.copy()
prop_patches["ec"]="none"
- prop_patches["alpha"]="0.2"
+ prop_patches["alpha"]=0.2
c1, c2, bbox_patch1, bbox_patch2, p = \
connect_bbox(mybbox1, mybbox2,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|