From: <jd...@us...> - 2008-06-20 10:46:32
|
Revision: 5607 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5607&view=rev Author: jdh2358 Date: 2008-06-20 03:46:12 -0700 (Fri, 20 Jun 2008) Log Message: ----------- added get edgecolor accessor method to collections Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/collections.py Modified: trunk/matplotlib/lib/matplotlib/collections.py =================================================================== --- trunk/matplotlib/lib/matplotlib/collections.py 2008-06-20 07:03:22 UTC (rev 5606) +++ trunk/matplotlib/lib/matplotlib/collections.py 2008-06-20 10:46:12 UTC (rev 5607) @@ -309,6 +309,10 @@ return self._facecolors get_facecolors = get_facecolor + def get_edgecolor(self): + return self._edgecolors + get_edgecolors = get_edgecolor + def set_edgecolor(self, c): """ Set the edgecolor(s) of the collection. *c* can be a This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |