buckeyevr

Untitled

Mar 25th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. //Nate.bvr\n\n//Torus\ntor=parametricSurface\ntor.setMinMax=s,0,6.5\ntor.setMinMax=t,0,6.5\ntor.setEquation=x,((2+(1*cos(s)))*(1*cos(t)))\ntor.setEquation=y,((2+(1*cos(s)))*(1*sin(t)))\ntor.setEquation=z,(sin(s))\ntor.setSegmentCount=30\ntor.color=green\ntor.spawn\n\n//circleN\nhelix=parametricCurve\nhelix.setMinMax=t,-12,12\nhelix.setEquation=y,(2+cos(t))\nhelix.setEquation=z,(sin(t))\nhelix.setSegmentCount=70\nhelix.setThickness=0.15\nhelix.color=grey\nhelix.spawn\n\n//CircleNh\ncircle=parametricCurve\ncircle.setMinMax=t,-12,12\ncircle.setEquation=x,(3*cos(t))\ncircle.setEquation=y,(3*sin(t))\ncircle.setSegmentCount=100\ncircle.setThickness=.15\ncircle.color=red\ncircle.spawn\n\n
Add Comment
Please, Sign In to add comment