|
From: <md...@us...> - 2008-12-02 17:54:50
|
Revision: 6473
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6473&view=rev
Author: mdboom
Date: 2008-12-02 17:54:44 +0000 (Tue, 02 Dec 2008)
Log Message:
-----------
Fix axhline etc. with non-linear scales.
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/transforms.py
Modified: trunk/matplotlib/lib/matplotlib/transforms.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/transforms.py 2008-12-02 17:53:45 UTC (rev 6472)
+++ trunk/matplotlib/lib/matplotlib/transforms.py 2008-12-02 17:54:44 UTC (rev 6473)
@@ -1237,6 +1237,7 @@
of the same dimensions.
"""
pass_through = True
+ is_affine = False
def __init__(self, child):
"""
@@ -1288,10 +1289,6 @@
self.invalidate()
self._invalid = 0
- def _get_is_affine(self):
- return self._child.is_affine
- is_affine = property(_get_is_affine)
-
def _get_is_separable(self):
return self._child.is_separable
is_separable = property(_get_is_separable)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|