buckeyevr

Untitled

Feb 22nd, 2019
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. //Sphere_and_Circles.bvr\n\n//Sphere\n//Parametricsurface\nsph=parametricSurface\nsph.setMinMax=s,0,3.5\nsph.setMinMax=t,0,6.6\nsph.setEquation=x, (4*(cos(t)*sin(s)))\nsph.setEquation=y, (4*(sin(t)*sin(s)))\nsph.setEquation=z, (4*cos(s))\nsph.setSegmentCount=20\nsph.color=red\nsph.spawn\n\n//GreatCircle\n//Parametriccurve\nGC=parametricCurve\nGC.setMinMax=t,0,6.6\nGC.setEquation=x, (4*(cos(t)))\nGC.setEquation=y, (4*(sin(t)))\nGC.setSegmentCount=70\nGC.setThickness=0.2\nGC.color=green\nGC.spawn\n\n//Circle\n//Parametriccurve\ncirc=parametricCurve\ncirc.setMinMax=t,0,6.6\ncirc.setEquation=x, (2.5*(cos(t)))\ncirc.setEquation=y, (2.5*(sin(t)))\ncirc.setEquation=z, (0.067*(cos(2.83)+48))\ncirc.setSegmentCount=70\ncirc.setThickness=0.2\ncirc.color=yellow\ncirc.spawn
Add Comment
Please, Sign In to add comment