Advertisement
buckeyevr

Untitled

Feb 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 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.color=aqua\nt.spawn\n\n//Parametric curve\nhelix=parametricCurve\nhelix.setMinMax=t,0,6.5\nhelix.setEquation=x,((3*cos(t))*cos(t))\nhelix.setEquation=y,((3*sin(t))*cos(t))\nhelix.setEquation=z,(0)\nhelix.setSegmentCount=60\nhelix.setThickness=0.15\nhelix.color=red\nhelix.spawn\n\n\n//Text\ntxt=text\ntxt.text=Mobius+track\ntxt.color=green\ntxt.position=0,0,4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement