buckeyevr

Untitled

Feb 20th, 2019
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. //ChangeFileNameHere.bvr\n\n//Parametric surface\nt=parametricSurface\nt.setMinMax=s,-1,1\nt.setMinMax=t,0,6.283183018\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-1/5))\nt.setSegmentCount=30 \nt.spawn\n\n//Parametric curve\nhelix=parametricCurve\nhelix.setMinMax=t,0,6.283185\nhelix.setEquation=x,(-cos(t)*3)\nhelix.setEquation=y,(sin(t)*3)\nhelix.setEquation=z,(1/10*t)\nhelix.setSegmentCount=70\nhelix.setThickness=.1\nhelix.color=red\nhelix.spawn\n\n//Vector\nz=vectorDraw\nz.setTail=0,0,0\nz.setHead=0,0,2\nz.color=blue\nz.setRadius=0.25\nz.spawn\n\n//Text\ntxt=text\ntxt.text=Buckeye VR\ntxt.color=green\ntxt.position=0,0,4\n
Add Comment
Please, Sign In to add comment