Carl Karsten wrote: > perhaps an smooth scrolling feature > would be nice: SmoothCenter(x,y,rate) or something would pan/zoom from the > current view to a new view, but smoothly, and as a process that doesn't > disrupt > the event loop
Thanks for the input -- I look forward to hearing more. > (so like a thread. maybe even a thread. if you think you need a > real thread, look at stackles. ) Well, threads are an issue with wxPython -- you need to do all GUI calls in the same thread, and drawing to the screen is certainly a GUI call. However, you can do animation of sorts by putting a call into wx.GetApp().Yield() in between frames -- I think that's done in the Animation sample. -Chris -- Christopher Barker, Ph.D. Oceanographer NOAA/OR&R/HAZMAT (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception _______________________________________________ FloatCanvas mailing list [email protected] http://mail.mithis.com/cgi-bin/mailman/listinfo/floatcanvas
