|
From: <js...@us...> - 2008-07-13 13:24:33
|
Revision: 5761
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5761&view=rev
Author: jswhit
Date: 2008-07-13 06:24:30 -0700 (Sun, 13 Jul 2008)
Log Message:
-----------
make polygons transparent
Modified Paths:
--------------
trunk/toolkits/basemap/examples/plot_tissot.py
Modified: trunk/toolkits/basemap/examples/plot_tissot.py
===================================================================
--- trunk/toolkits/basemap/examples/plot_tissot.py 2008-07-13 13:23:15 UTC (rev 5760)
+++ trunk/toolkits/basemap/examples/plot_tissot.py 2008-07-13 13:24:30 UTC (rev 5761)
@@ -34,7 +34,7 @@
for parallel in range(-60,61,30):
for meridian in range(-165,166,30):
seg = m.tissot(meridian,parallel,6,100)
- poly = Polygon(seg,facecolor='green',zorder=10)
+ poly = Polygon(seg,facecolor='green',zorder=10,alpha=0.5)
ax.add_patch(poly)
# draw meridians and parallels.
m.drawparallels(np.arange(-60,61,30))
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|