All, I have: from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt import numpy as np
fig=plt.figure() ax=axes3d.Axes3D(fig) x=np.linspace(-2,2,40) y=np.linspace(-2,2,40) X, Y=np.meshgrid(x,y) Z=6-2*X**2 ax.plot_wireframe(X,Y,Z) ax.set_xlabel('x-axis') ax.set_ylabel('y-axis') ax.set_zlabel('z-axis') plt.show() How can I add a title and rotate the axes? D. ------------------------------------------------------------------------------ Join us December 9, 2009 for the Red Hat Virtual Experience, a free event focused on virtualization and cloud computing. Attend in-depth sessions from your desk. Your couch. Anywhere. http://p.sf.net/sfu/redhat-sfdev2dev _______________________________________________ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users