#coding:utf-8
'''
Created on 2013-1-24

@author: Administrator
'''
from visual import *

if __name__ == '__main__':
    print("显示3d图形")
    ball=sphere()
    ball.color=color.green
    ball.pos=(5,5,5)

    #txt=text(text='My text is\ngreen',align='center', depth=-0.3, color=color.green)
    b=r"你好"
    txt=text()
    txt.text=r'你好'
    txt.color=color.blue
    txt.depth=-0.5
    txt.align='center'
    pass