我正在尝试使用以下代码在 Python 3.3.2 中制作圆柱体:
rod = cylinder(pos=(0,2,1), axis=(5,0,0), radius=1)
rod.pos = (15,11,9) # change (x,y,z)
rod.x = 15 # only change pos.x
rod.color = (0,0,1) # make rod be blue
rod.red = 0.4
在此站点的帮助下:http ://www.vpython.org/contents/docs_vp5/visual/cylinder.html
输出为: NameError: name 'cylinder' is not defined
有什么我需要安装或必须导入的东西吗?
提前致谢