From: <md...@us...> - 2008-06-22 08:08:24
|
Revision: 5627 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5627&view=rev Author: mdboom Date: 2008-06-21 14:07:54 -0700 (Sat, 21 Jun 2008) Log Message: ----------- Fixing [ matplotlib-Bugs-1994535 ] still missing lines on graph with svn (r 5548) Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/patches.py Modified: trunk/matplotlib/lib/matplotlib/patches.py =================================================================== --- trunk/matplotlib/lib/matplotlib/patches.py 2008-06-21 17:07:25 UTC (rev 5626) +++ trunk/matplotlib/lib/matplotlib/patches.py 2008-06-21 21:07:54 UTC (rev 5627) @@ -596,6 +596,8 @@ return self._path.vertices def set_xy(self, vertices): self._path = Path(vertices) + _get_xy = get_xy + _set_xy = set_xy xy = property( get_xy, set_xy, None, """Set/get the vertices of the polygon. This property is This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |