Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. //Torus.bvr\n\n// Parametric surface\ncyl=parametricSurface\ncyl.setMinMax=s,0,6.5\ncyl.setMinMax=t,0,6.5\ncyl.setEquation=x,((2+cos(s))*cos(t))\ncyl.setEquation=y,((2+cos(s))*sin(t))\ncyl.setEquation=z,(sin(s))\ncyl.setSegmentCount=30\ncyl.color=blue\ncyl.spawn\n\nc=parametricCurve\nc.setMinMax=t,-12,12\nc.setEquation=x,(3*cos(t))\nc.setEquation=y,(3*sin(t))\nc.setSegmentCount=70\nc.setThickness=0.15\nc.color=red\nc.spawn\n\np=parametricCurve\np.setMinMax=t,-12,12\np.setEquation=y,(2+sin(t))\np.setEquation=z,(cos(t))\np.setSegmentCount=70\np.setThickness=0.15\np.color=green\np.spawn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement