I am using axes3d to draw wireframes with code like this:

from numpy import *
import pylab as p
import matplotlib.axes3d as p3

fig1 = figure(1)
ax1 = p3.Axes3D(fig1)
ax1.plot_wireframe(x,y,z)


When this gets done drawing, I can click and drag with my mouse to
rotate the figure.  I would like to set the orientation from a script.
 Is there a method of either fig1 or ax1 to do this?

Thanks,

Ryan

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to