From: <md...@us...> - 2007-11-28 20:37:10
|
Revision: 4495 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4495&view=rev Author: mdboom Date: 2007-11-28 12:37:04 -0800 (Wed, 28 Nov 2007) Log Message: ----------- Minor fixes. Modified Paths: -------------- branches/transforms/lib/matplotlib/transforms.py Modified: branches/transforms/lib/matplotlib/transforms.py =================================================================== --- branches/transforms/lib/matplotlib/transforms.py 2007-11-28 20:36:45 UTC (rev 4494) +++ branches/transforms/lib/matplotlib/transforms.py 2007-11-28 20:37:04 UTC (rev 4495) @@ -556,7 +556,7 @@ corners = self.corners() corners_rotated = Affine2D().rotate(radians).transform(corners) bbox = Bbox.unit() - bbox.update_from_data(corners_rotated, ignore=True) + bbox.update_from_data_xy(corners_rotated, ignore=True) return bbox #@staticmethod @@ -649,7 +649,8 @@ def ignore(self, value): """ Set whether the existing bounds of the box should be ignored - by subsequent calls to update_from_data. + by subsequent calls to update_from_data or + update_from_data_xy. value: When True, subsequent calls to update_from_data will ignore the existing bounds of the Bbox. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |