Skip to content

Commit 56827ef

Browse files
committed
Fix bug (typo) in Transform.transform_non_affine.
svn path=/trunk/matplotlib/; revision=5818
1 parent eb37f36 commit 56827ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/transforms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ def transform_non_affine(self, values):
10521052
Accepts a numpy array of shape (N x :attr:`input_dims`) and
10531053
returns a numpy array of shape (N x :attr:`output_dims`).
10541054
"""
1055-
return self.transform(points)
1055+
return self.transform(values)
10561056

10571057
def get_affine(self):
10581058
"""

0 commit comments

Comments
 (0)