Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 KB | None | 0 0
  1. \n//Newton_Balls.bvr\n\n//Parametric surface\nsphere=parametricSurface\nsphere.setMinMax=t,0,6.6\nsphere.setMinMax=s,0,3.3\nsphere.setEquation=x,((cos(t)*sin(s))*4)\nsphere.setEquation=y,((sin(t)*sin(s))*4)\nsphere.setEquation=z,((cos(s))*4)\nsphere.setSegmentCount=30\nsphere.color=blue\nsphere.spawn\n\n//Parametric surface\nspherea=parametricSurface\nspherea.setMinMax=t,0,6.6\nspherea.setMinMax=s,0,3.3\nspherea.setEquation=x,(8+(cos(t)*sin(s))*4)\nspherea.setEquation=y,((sin(t)*sin(s))*4)\nspherea.setEquation=z,((cos(s))*4)\nspherea.setSegmentCount=30\nspherea.color=blue\nspherea.spawn\n\n//Parametric surface\nsphereb=parametricSurface\nsphereb.setMinMax=t,0,6.6\nsphereb.setMinMax=s,0,3.3\nsphereb.setEquation=x,(16+(cos(t)*sin(s))*4)\nsphereb.setEquation=y,((sin(t)*sin(s))*4)\nsphereb.setEquation=z,((cos(s))*4)\nsphereb.setSegmentCount=30\nsphereb.color=blue\nsphereb.spawn\n\n//Parametric surface\nspherec=parametricSurface\nspherec.setMinMax=t,0,6.6\nspherec.setMinMax=s,0,3.3\nspherec.setEquation=x,(-8+(cos(t)*sin(s))*4)\nspherec.setEquation=y,((sin(t)*sin(s))*4)\nspherec.setEquation=z,((cos(s))*4)\nspherec.setSegmentCount=30\nspherec.color=blue\nspherec.spawn\n\n// Parametric curve\nstring=parametricCurve\nstring.setMinMax=t,0,10\nstring.setEquation=x,(0)\nstring.setEquation=y,(t/2)\nstring.setEquation=z, (t+4)\nstring.setSegmentCount=70\nstring.setThickness=0.2\nstring.color=red \nstring.spawn\n\n// Parametric curve\nstringa=parametricCurve\nstringa.setMinMax=t,0,10\nstringa.setEquation=x,(8)\nstringa.setEquation=y,(t/2)\nstringa.setEquation=z, (t+4)\nstringa.setSegmentCount=70\nstringa.setThickness=0.2\nstringa.color=red\nstringa.spawn\n\n// Parametric curve\nstringb=parametricCurve\nstringb.setMinMax=t,0,10\nstringb.setEquation=x,(16)\nstringb.setEquation=y,(t/2)\nstringb.setEquation=z, (t+4)\nstringb.setSegmentCount=70\nstringb.setThickness=0.2\nstringb.color=red \nstringb.spawn\n\n// Parametric curve\nstringc=parametricCurve\nstringc.setMinMax=t,0,10\nstringc.setEquation=x,(-8)\nstringc.setEquation=y,(t/2)\nstringc.setEquation=z, (t+4)\nstringc.setSegmentCount=70\nstringc.setThickness=0.2\nstringc.color=red \nstringc.spawn\n\n// Parametric curve\nstring1=parametricCurve\nstring1.setMinMax=t,0,10\nstring1.setEquation=x,(0)\nstring1.setEquation=y,(-t/2)\nstring1.setEquation=z, (t+4)\nstring1.setSegmentCount=70\nstring1.setThickness=0.2\nstring1.color=red \nstring1.spawn\n\n// Parametric curve\nstringa1=parametricCurve\nstringa1.setMinMax=t,0,10\nstringa1.setEquation=x,(8)\nstringa1.setEquation=y,(-t/2)\nstringa1.setEquation=z, (t+4)\nstringa1.setSegmentCount=70\nstringa1.setThickness=0.2\nstringa1.color=red\nstringa1.spawn\n\n// Parametric curve\nstringb1=parametricCurve\nstringb1.setMinMax=t,0,10\nstringb1.setEquation=x,(16)\nstringb1.setEquation=y,(-t/2)\nstringb1.setEquation=z, (t+4)\nstringb1.setSegmentCount=70\nstringb1.setThickness=0.2\nstringb1.color=red \nstringb1.spawn \n\n\n// Parametric curve\nstringc1=parametricCurve\nstringc1.setMinMax=t,0,10\nstringc1.setEquation=x,(-8)\nstringc1.setEquation=y,(-t/2)\nstringc1.setEquation=z, (t+4)\nstringc1.setSegmentCount=70\nstringc1.setThickness=0.2\nstringc1.color=red \nstringc1.spawn\n\n// Parametric curve\nrod=parametricCurve\nrod.setMinMax=t,-16,24\nrod.setEquation=x,(t)\nrod.setEquation=y,(5)\nrod.setEquation=z,(14)\nrod.setSegmentCount=70 \nrod.setThickness=0.5\nrod.color=green\nrod.spawn\n\n// Parametric curve\nrod1=parametricCurve\nrod1.setMinMax=t,-16,24\nrod1.setEquation=x,(t)\nrod1.setEquation=y,(-5)\nrod1.setEquation=z,(14)\nrod1.setSegmentCount=70 \nrod1.setThickness=0.5\nrod1.color=green\nrod1.spawn\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement