VPython 是一个 Python 语言加上 3D 图形模块,因此称之为 Visual。使用 VPython 可以很方面的创建可浏览的三维显示和动画。
先在ubuntu下安装vpython
sudo apt-get install Python-visual
进入python
导入模块 from visual.text import *
输入代码:scene.title = "Hello World"
text(pos=(0,3,0), string='HELLO WORLD', color=color.orange, depth=-1, justify='center')
text(pos=(0,0,0), string='HELLO WORLD', color=color.orange, depth=0, justify='center')
text(pos=(0,-3,0), string='HELLO WORLD', color=color.orange, depth=1, justify='center')
可见下图
回车;
可见下图
初步完成Vpython demo。
注意:
1.模块要安装好。
2.代码仔细输入。