Advertisement
buckeyevr

Untitled

Feb 21st, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. //ChangeFileNameHere.bvr\n\n//Sphere\nt=parametricSurface\nt.setMinMax=s,0,6.3\nt.setMinMax=t,0,6.3\nt.setEquation=x,(4*cos(t)*sin(s))\nt.setEquation=y,(4*sin(t)*sin(s))\nt.setEquation=z,(4*cos(s))\nt.setSegmentCount=30 \nt.color=blue\nt.spawn\n\n//Plane\nw=parametricSurface\nw.setMinMax=s,-10,10\nw.setMinMax=t,-10,10\nw.setEquation=x,(s)\nw.setEquation=y,(2)\nw.setEquation=z,(t)\nw.setSegmentCount=30 \nw.color=green\nw.spawn\n//Parametric curve\nhelix=parametricCurve\nhelix.setMinMax=t,-8,8\nhelix.setEquation=x,(12^(1/2)*cos(t))\nhelix.setEquation=y,(2)\nhelix.setEquation=z,(12^(1/2)*sin(t))\nhelix.setSegmentCount=70\nhelix.setThickness=0.15\nhelix.color=red\nhelix.spawn\n\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement