buckeyevr

Untitled

Feb 22nd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. //Chase.bvr\n\n//Sphere\nsphere=parametricSurface\nsphere.setMinMax=t,0,6.6\nsphere.setMinMax=s,0,3.3\nsphere.setEquation=x,(3*cos(t)*sin(s))\nsphere.setEquation=y,(3*sin(t)*sin(s))\nsphere.setEquation=z,(3*cos(s))\nsphere.setSegmentCount=20\nsphere.color=blue\nsphere.spawn\n\n\n//Great Circle\ngrc=parametricCurve\ngrc.setMinMax=t,0,6.6\ngrc.setEquation=x,((3)*cos(t))\ngrc.setEquation=y,((3)*sin(t))\ngrc.setSegmentCount=20\ngrc.setThickness=.1\ngrc.color=red\ngrc.spawn\n\n//Non Great Circle\ncir=parametricCurve\ncir.setMinMax=t,0,6.6\ncir.setEquation=x,(2)\ncir.setEquation=y,(sqrt(5)*cos(t))\ncir.setEquation=z,(sqrt(5)*sin(t))\ncir.setSegmentCount=20\ncir.setThickness=.1\ncir.color=green\ncir.spawn
Add Comment
Please, Sign In to add comment