Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. //Sphere and circles.bvr\n\n//sphere\nsphere=parametricSurface\nsphere.setMinMax=s,0,6.5\nsphere.setMinMax=t,0,6.5\nsphere.setEquation=x,(10*cos(s)*sin(t))\nsphere.setEquation=y,(10*sin(s)*sin(t))\nsphere.setEquation=z,(10*cos(t))\nsphere.setSegmentCount=30 \nsphere.spawn\n\n//circle1\ncircle1=parametricCurve\ncircle1.setMinMax=t,0,6.5\ncircle1.setEquation=x,(10*cos(t))\ncircle1.setEquation=y,(10*sin(t))\ncircle1.setEquation=z,(0)\ncircle1.setSegmentCount=70\ncircle1.setThickness=0.15\ncircle1.color=red\ncircle1.spawn\n\n//circle2\ncircle2=parametricCurve\ncircle2.setMinMax=t,0,6.5\ncircle2.setEquation=x,(8.65*cos(t))\ncircle2.setEquation=y,(5)\ncircle2.setEquation=z,(8.65*sin(t))\ncircle2.setSegmentCount=70\ncircle2.setThickness=0.15\ncircle2.color=blue\ncircle2.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