From: <md...@us...> - 2007-12-12 13:48:32
|
Revision: 4701 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4701&view=rev Author: mdboom Date: 2007-12-12 05:48:09 -0800 (Wed, 12 Dec 2007) Log Message: ----------- Make the arc edge detection algorithm be dynamic based on the size of the ellipse, rather than always on (that was just for debugging). Modified Paths: -------------- branches/transforms/lib/matplotlib/patches.py Modified: branches/transforms/lib/matplotlib/patches.py =================================================================== --- branches/transforms/lib/matplotlib/patches.py 2007-12-12 00:15:23 UTC (rev 4700) +++ branches/transforms/lib/matplotlib/patches.py 2007-12-12 13:48:09 UTC (rev 4701) @@ -989,7 +989,7 @@ (self._width, self._height)) inv_error = (1.0 / 1.89818e-6) - if width < inv_error and height < inv_error and False: + if width < inv_error and height < inv_error: self._path = Path.arc(self._theta1, self._theta2) return Patch.draw(self, renderer) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |