|
From: <ry...@us...> - 2008-07-23 02:44:50
|
Revision: 5818
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5818&view=rev
Author: ryanmay
Date: 2008-07-23 02:44:49 +0000 (Wed, 23 Jul 2008)
Log Message:
-----------
Fix bug (typo) in Transform.transform_non_affine.
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/transforms.py
Modified: trunk/matplotlib/lib/matplotlib/transforms.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/transforms.py 2008-07-23 01:18:27 UTC (rev 5817)
+++ trunk/matplotlib/lib/matplotlib/transforms.py 2008-07-23 02:44:49 UTC (rev 5818)
@@ -1052,7 +1052,7 @@
Accepts a numpy array of shape (N x :attr:`input_dims`) and
returns a numpy array of shape (N x :attr:`output_dims`).
"""
- return self.transform(points)
+ return self.transform(values)
def get_affine(self):
"""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|