buckeyevr

Untitled

Feb 22nd, 2019
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. /SphereAndCircles.bvr\n\n//Sphere\nsphere=parametricSurface\nsphere.setMinMax=s,0,6.3\nsphere.setMinMax=t,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=25\nsphere.color=green\nsphere.spawn\n\n//Great Circle\ngreatCircle=parametricCurve\ngreatCircle.setMinMax=t,-12,12\ngreatCircle.setEquation=x,(3*cos(t))\ngreatCircle.setEquation=y,(3*sin(t))\ngreatCircle.setEquation=z,(0)\ngreatCircle.setSegmentCount=70\ngreatCircle.setThickness=0.15\ngreatCircle.color=blue\ngreatCircle.spawn\n\n//Regular circle\nregularCircle=parametricCurve\nregularCircle.setMinMax=t,-12,12\nregularCircle.setEquation=x,(2.65*sin(t))\nregularCircle.setEquation=y,(1.5)\nregularCircle.setEquation=z,(2.65*cos(t))\nregularCircle.setSegmentCount=70\nregularCircle.setThickness=0.15\nregularCircle.color=red\nregularCircle.spawn
Add Comment
Please, Sign In to add comment