Advertisement
buckeyevr

Untitled

Feb 20th, 2019
83
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.5\nt.setMinMax=t,0,3.165\nt.setEquation=x,(6*cos(t)*sin(s))\nt.setEquation=y,(6*sin(t)*sin(s))\nt.setEquation=z,(6*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,-12,12\nhelix.setEquation=x,(32^(1/2)*cos(t))\nhelix.setEquation=y,(2)\nhelix.setEquation=z,(32^(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