Advertisement
buckeyevr

Untitled

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