Gribouillis
Posting Maven
3,101 posts since Jul 2008
Reputation Points: 1,130
Solved Threads: 761
Skill Endorsements: 11
There is Blender that uses Python as a scripting language.
See:
http://wiki.blender.org/
Used to come along with Stani's Python Editor (SPE).
I have played around with VPython and find it very powerful.
Here is a typical VPython coded example ...
# draw a green cylinder and a red sphere in a frame
# press the right mouse button to drag/rotate the objects
# experiments with visual Python (VPython) from: http://vpython.org/
import visual as vs
f = vs.frame()
# pos=(x,y,z) color=(r,g,b)
# can also use vs.color.red and vs.color.green
vs.cylinder(frame=f, pos=(1,1,0), radius=0.2, length=4, color=(0,1,0))
vs.sphere(frame=f, pos=(1,1,0), radius=0.7, color=(1,0,0))
# position the frame (x,y,z)
f.axis = (0,0,1)
f.pos = (-1,0,0)
vegaseat
DaniWeb's Hypocrite
6,475 posts since Oct 2004
Reputation Points: 1,447
Solved Threads: 1,611
Skill Endorsements: 36
pyTony
pyMod
6,308 posts since Apr 2010
Reputation Points: 879
Solved Threads: 986
Skill Endorsements: 26