Re: [Tutor] [Visualpython-users] VPython and Tkinter

2009-02-04 Thread Bruce Sherwood
the Carbon-based Mac version, the application was removed from the set of examples, which are platform-independent. Bruce Sherwood Mr Gerard Kelly wrote: Is there a way to make separate VPython and Tkinter windows run simultaneously from the one program? Or to have the VPython window run

Re: [Tutor] [Visualpython-users] tkinter and visual with objects

2009-02-05 Thread Bruce Sherwood
The following works to produce a window with nothing displayed in it: ball = sphere() ball.visible = 0 Another scheme would be this: scene.range = 1 ball = sphere(radius=1e-6) The point is that Visual doesn't create a window unless there is something to display. Bruce Sherwood Mr G