|
From: <md...@us...> - 2010-08-16 19:58:25
|
Revision: 8638
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8638&view=rev
Author: mdboom
Date: 2010-08-16 19:58:19 +0000 (Mon, 16 Aug 2010)
Log Message:
-----------
Missed detail in last commit.
Modified Paths:
--------------
branches/v1_0_maint/lib/matplotlib/path.py
Modified: branches/v1_0_maint/lib/matplotlib/path.py
===================================================================
--- branches/v1_0_maint/lib/matplotlib/path.py 2010-08-16 19:57:25 UTC (rev 8637)
+++ branches/v1_0_maint/lib/matplotlib/path.py 2010-08-16 19:58:19 UTC (rev 8638)
@@ -443,7 +443,7 @@
codes[0] = cls.MOVETO
codes[1:-1] = cls.LINETO
codes[-1] = cls.CLOSEPOLY
- path = cls(verts)
+ path = cls(verts, codes)
if numVertices <= 16:
cls._unit_regular_polygons[(numVertices, innerCircle)] = path
return path
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|