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
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