Advertisement
buckeyevr

Untitled

Nov 13th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. \n// cirkeloefening1.bvr\ncirkel1=parametricCurve\ncirkel1.setMinMax=t,0,25.12\ncirkel1.setEquation=x,(3*sin(t))\ncirkel1.setEquation=y,(3*cos(t))\ncirkel1.setEquation=z,(0.5*t)\ncirkel1.setSegmentCount=100\ncirkel1.setWidth=0.5,0.5\ncirkel1.color=blue\ncirkel1.spawn\n\n// cirkeloefening2.bvr\ncirkel2=parametricCurve\ncirkel2.setMinMax=t,0,25.12\ncirkel2.setEquation=x,(3*cos(t))\ncirkel2.setEquation=y,(3*sin(t))\ncirkel2.setEquation=z,(0.5*t)\ncirkel2.setSegmentCount=100\ncirkel2.setWidth=0.5,0.5\ncirkel2.color=aqua\ncirkel2.spawn\n\n// cirkeloefening3.bvr\ncirkel3=parametricCurve\ncirkel3.setMinMax=t,-25.12,0\ncirkel3.setEquation=x,(3*cos(t))\ncirkel3.setEquation=y,(3*sin(t))\ncirkel3.setEquation=z,(-0.5*t)\ncirkel3.setSegmentCount=100\ncirkel3.setWidth=0.5,0.5\ncirkel3.color=white\ncirkel3.spawn\n\n// cirkeloefening4.bvr\ncirkel4=parametricCurve\ncirkel4.setMinMax=t,-25.12,0\ncirkel4.setEquation=x,(3*sin(t))\ncirkel4.setEquation=y,(3*cos(t))\ncirkel4.setEquation=z,(-0.5*t)\ncirkel4.setSegmentCount=100\ncirkel4.setWidth=0.5,0.5\ncirkel4.color=red\ncirkel4.spawn\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement