Hi all...I am connecting an event handler that collects user input via
raw_input. When using GTKAgg as my backend, this works but requires the
user to first hit 'enter' before the raw_input prompt is displayed--this
extra step of hitting enter is quite cumbersome! When I use the TKAgg
backend,
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