|
From: <lee...@us...> - 2010-03-04 00:05:23
|
Revision: 8178
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8178&view=rev
Author: leejjoon
Date: 2010-03-04 00:05:17 +0000 (Thu, 04 Mar 2010)
Log Message:
-----------
make NonUniformImage not to use unsampled_image
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/image.py
Modified: trunk/matplotlib/lib/matplotlib/image.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/image.py 2010-03-03 21:33:35 UTC (rev 8177)
+++ trunk/matplotlib/lib/matplotlib/image.py 2010-03-04 00:05:17 UTC (rev 8178)
@@ -592,6 +592,12 @@
**kwargs)
AxesImage.set_interpolation(self, interp)
+ def _check_unsampled_image(self, renderer):
+ """
+ return False. Do not use unsampled image.
+ """
+ return False
+
def make_image(self, magnification=1.0):
if self._A is None:
raise RuntimeError('You must first set the image array')
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|