Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. //ChangeFileNameHere.bvr\n\n//Parametric surface\nt=parametricSurface\nt.setMinMax=s,-1,1\nt.setMinMax=t,0,6.5\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,0,6.5\nhelix.setEquation=x,(3*cos(t))\nhelix.setEquation=y,(3*sin(t))\nhelix.setEquation=z,(0)\nhelix.setSegmentCount=70\nhelix.setThickness=0.15\nhelix.color=red\nhelix.spawn\n\n\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement