|
From: <as...@us...> - 2009-11-12 23:06:32
|
Revision: 7960
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7960&view=rev
Author: astraw
Date: 2009-11-12 23:05:45 +0000 (Thu, 12 Nov 2009)
Log Message:
-----------
image.py: change default image zorder 1 -> 0
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/image.py
Modified: trunk/matplotlib/lib/matplotlib/image.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/image.py 2009-11-12 22:49:37 UTC (rev 7959)
+++ trunk/matplotlib/lib/matplotlib/image.py 2009-11-12 23:05:45 UTC (rev 7960)
@@ -27,7 +27,7 @@
from matplotlib.transforms import BboxBase
class _AxesImageBase(martist.Artist, cm.ScalarMappable):
- zorder = 1
+ zorder = 0
# map interpolation strings to module constants
_interpd = {
'nearest' : _image.NEAREST,
@@ -687,7 +687,7 @@
self.update_dict['array'] = True
class FigureImage(martist.Artist, cm.ScalarMappable):
- zorder = 1
+ zorder = 0
def __init__(self, fig,
cmap = None,
norm = None,
@@ -805,7 +805,6 @@
"""
The Image class whose size is determined by the given bbox.
"""
- zorder = 1
def __init__(self, bbox,
cmap = None,
norm = None,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|