VPython的第一堂課:初探VPython
2/14 2022
類別:程式教學
✻使用 GlowScript進行繪圖時,請記得先於第一行打上: GlowScript 3.0 VPython
建立物件練習
1. 球體(sphere)
● 建立物件:
ball=sphere(pos=vector(1,2,1),radius=0.3,color=color.red)
2. 立方體(box)
● 建立物件:
cuboid=box(pos=vector(-2,0,0),length=0.3,width=0.2,height=1 ,color=color.white)
3. 箭頭(arrow)
● 建立物件:
pointer_a=arrow(pos=vector(0,2,1), axis=vector(5,0,0), shaftwidth=1)
4. 柱狀體(cylinder)
●建立物件:
rod = cylinder(pos=vector(0,2,1),axis=vector(5,0,0), radius=1)
5. 螺旋(helix)
●建立物件:
spring = helix(pos=vector(0,2,1), axis=vector(5,0,0), radius=0.5)