Jeff Whitaker wrote:
> If I draw two images with imshow, then set_zorder for one of them to be
> higher than the other, should that one be the one that displays?
Jeff,
It is a wart. Images are handled separately from other artists, and
always drawn first, either as a composite or in the order
If I draw two images with imshow, then set_zorder for one of them to be
higher than the other, should that one be the one that displays?
for example, with
from pylab import *
delta = 0.025
x = y = arange(-3.0, 3.0, delta)
X, Y = meshgrid(x, y)
Z1 = bivariate_normal(X, Y, 1.0, 1.0, 0.0, 0.0)
Z2