[Matplotlib-users] x=, y=, z=??

2007-01-12 Thread Eric Emsellem
Dear all, I am coming back to an issue for which I didn't get a direct answer (except for a very nice module from Angus McMorland!): - at the moment different backends in mpl automatically provides, when an image (or a plot) is displayed with e.g. imshow (plot), the coordinates x and y directly

Re: [Matplotlib-users] troubles with contour3d, contourf3d in v0.87.5

2007-01-12 Thread Eric Firing
I don't know if everything 3D works, but the first error you note below is fixed in svn, and I suspect in 0.87.7, the last release. 0.87.5 is rather old--quite a bit has changed between minor releases. Eric Matthew Koichi Grimes wrote: contourf3D and contour3D seem to be broken in my copy of

[Matplotlib-users] animating surfaces

2007-01-12 Thread Matthew Koichi Grimes
I'd like to plot a 3D surface and its contours as the surface evolves. When I do it by simply calling plot_surface and/or contour3D multiple times, the plot doesn't clear the old surface before plotting the new one, so I get a whole bunch of surfaces accumulating in the same plot: snip import

Re: [Matplotlib-users] animating surfaces

2007-01-12 Thread Eric Firing
Matthew Koichi Grimes wrote: I'd like to plot a 3D surface and its contours as the surface evolves. When I do it by simply calling plot_surface and/or contour3D multiple times, the plot doesn't clear the old surface before plotting the new one, so I get a whole bunch of surfaces