Advertisement
buckeyevr

Untitled

Feb 21st, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. //SphereAndTwoCircle.bvr\n\n//Parametric surface\ns=parametricSurface\ns.setMinMax=s,0,6.5\ns.setMinMax=t,0,3.25\ns.setEquation=x,(3*sin(s)*cos(t))\ns.setEquation=y,(3*sin(s)*sin(t))\ns.setEquation=z,(3*cos(s))\ns.setSegmentCount=30\ns.spawn\n\n\n//Parametric curve\nbigC=parametricCurve\nbigC.setMinMax=t,0,6.5\nbigC.setEquation=x,(3*cos(t))\nbigC.setEquation=y,(3*sin(t))\nbigC.setSegmentCount=70\nbigC.setThickness=0.2\nbigC.color=blue\nbigC.spawn\n\n//Parametric curve\nsmallC=parametricCurve\nsmallC.setMinMax=t,0,6.5\nsmallC.setEquation=x,(sqrt(5)*sin(t))\nsmallC.setEquation=y,(2)\nsmallC.setEquation=z,(sqrt(5)*cos(t))\nsmallC.setSegmentCount=70\nsmallC.setThickness=0.2\nsmallC.color=red\nsmallC.spawn\n\n//Text\ntxt=text\ntxt.text=Buckeye VR\ntxt.color=green\ntxt.position=0,0,4\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement