Advertisement
buckeyevr

Untitled

Feb 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. //ChangeFileNameHere.bvr\n\n//Parametric surface\nt=parametricSurface\nt.setMinMax=s,-1,1\nt.setMinMax=t,0,6.6\nt.setEquation=x,((3+s*cos(t/2))*cos(t))\nt.setEquation=y,((3+s*cos(t/2))*sin(t))\nt.setEquation=z,(s*sin(t/2))\nt.setSegmentCount=30 \nt.spawn\n\n//Parametric curve\nhelix=parametricCurve\nhelix.setMinMax=t,-12,12\nhelix.setEquation=x,(cos(t)+cos(t/2)/4)\nhelix.setEquation=y,(sin(t)+sin(t/2)/4)\nhelix.setSegmentCount=70\nhelix.setThickness=0.15\nhelix.color=red\nhelix.spawn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement