Advertisement
buckeyevr

Untitled

Feb 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. \\ Mobius.bvr\n\n// Strip\nstrip=parametricSurface\nstrip.setMinMax=t,0,6.6\nstrip.setMinMax=s,-1,1\nstrip.setEquation=x,((3+s*cos(t/2))*cos(t))\nstrip.setEquation=y,((3+s*cos(t/2))*sin(t))\nstrip.setEquation=z,(s*sin(t/2))\nstrip.setSegmentCount=40\nstrip.color=yellow\nstrip.spawn\n\n// Curve\np=parametricCurve\np.setMinMax=t,-6.6,6.6\np.setEquation=x,((3+cos(t/2))*cos(t))\np.setEquation=y,((3+cos(t/2))*sin(t))\np.setEquation=z,(0.5)\np.setSegmentCount=40\np.setThickness=0.2\np.color=red\np.spawn\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement