From: <md...@us...> - 2008-07-09 19:30:24
|
Revision: 5727 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5727&view=rev Author: mdboom Date: 2008-07-09 12:30:22 -0700 (Wed, 09 Jul 2008) Log Message: ----------- Fix rectangular polar axes patch. Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/projections/geo.py trunk/matplotlib/lib/matplotlib/projections/polar.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008-07-09 16:16:50 UTC (rev 5726) +++ trunk/matplotlib/CHANGELOG 2008-07-09 19:30:22 UTC (rev 5727) @@ -1,3 +1,5 @@ +2008-07-09 Fix rectangular axes patch on polar plots bug - MGD + 2008-07-09 Improve mathtext radical rendering - MGD 2008-07-08 Improve mathtext superscript placement - MGD Modified: trunk/matplotlib/lib/matplotlib/projections/geo.py =================================================================== --- trunk/matplotlib/lib/matplotlib/projections/geo.py 2008-07-09 16:16:50 UTC (rev 5726) +++ trunk/matplotlib/lib/matplotlib/projections/geo.py 2008-07-09 19:30:22 UTC (rev 5727) @@ -127,7 +127,7 @@ def get_yaxis_text2_transform(self, pad): return self._yaxis_text2_transform, 'center', 'left' - def get_axes_patch(self): + def _gen_axes_patch(self): return Circle((0.5, 0.5), 0.5) def set_yscale(self, *args, **kwargs): Modified: trunk/matplotlib/lib/matplotlib/projections/polar.py =================================================================== --- trunk/matplotlib/lib/matplotlib/projections/polar.py 2008-07-09 16:16:50 UTC (rev 5726) +++ trunk/matplotlib/lib/matplotlib/projections/polar.py 2008-07-09 19:30:22 UTC (rev 5727) @@ -261,7 +261,7 @@ def get_yaxis_text2_transform(self, pad): return self._yaxis_text2_transform, 'center', 'center' - def get_axes_patch(self): + def _gen_axes_patch(self): return Circle((0.5, 0.5), 0.5) def set_rmax(self, rmax): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |