红联Linux门户
Linux帮助

Ubuntu下使用Vpython作图(helloworld)

发布时间:2017-03-04 11:32:24来源:linux网站作者:love梅竹雨
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')  
Ubuntu下使用Vpython作图(helloworld)
 
可见下图
Ubuntu下使用Vpython作图(helloworld)
 
回车;
可见下图
Ubuntu下使用Vpython作图(helloworld)
 
初步完成Vpython demo。
 
注意:
1.模块要安装好。
2.代码仔细输入。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/28875.html