easy 3D graphics for rendering geometry?
Scott David Daniels
Scott.Daniels at Acm.Org
Sat Nov 10 11:23:15 EST 2007
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>
More information about the Python-list
mailing list