gsal wrote: > I actually did look at VPython last weekend. I managed to draw a > soccer field, a few players, move them around and even record/play- > back plays....I was very impressed on how easy it was to learn not > only VPython, but Python in the first...I did not know any python, > either.
By the way, to get you completely hooked (I took a while to notice), try adding the following to your soccer program: import visual <your functions and classes here> if __name__ == '__main__': visual.scene.stereo = 'passive' visual.scene.stereodepth = 1 <your starting code here> -- http://mail.python.org/mailman/listinfo/python-list