Advertisement
buckeyevr

Untitled

Feb 20th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. \\ GROUP7CREATIVE.bvr\n\n// Parametric Surface\n\nsphere=parametricSurface\nsphere.setMinMax=s, 1.6, 3.45\nsphere.setMinMax=t, 0, 6.6\nsphere.setEquation=x,(4*cos(t)*sin(s))\nsphere.setEquation=y,(4*sin(t)*sin(s))\nsphere.setEquation=z,(4*cos(s))\nsphere.setSegmentCount=20\nsphere.setThickness=.2\nsphere.color=gray\nsphere.spawn\n\n\n// Parametric Surface\n\nsphere2=parametricSurface\nsphere2.setMinMax=s, 0, 1.7\nsphere2.setMinMax=t, 0, 6.6\nsphere2.setEquation=x,(4*cos(t)*sin(s))\nsphere2.setEquation=y,(4*sin(t)*sin(s))\nsphere2.setEquation=z,(4*cos(s))\nsphere2.setSegmentCount=20\nsphere2.setThickness=.2\nsphere2.color=red\nsphere2.spawn\n\n// Parametric Curve\n\ncircle=parametricCurve\ncircle.setMinMax=t, .27, 6.29\ncircle.setEquation=x, (4*cos(t))\ncircle.setEquation=y, (4*sin(t))\ncircle.setEquations=z, (-.2)\ncircle.setSegmentCount=20\ncircle.setThickness=.15\ncircle.color=black\ncircle.spawn\n\n// Parametric Curve\n\ncircle2=parametricCurve\ncircle2.setMinMax=t, 0,6.6\ncircle2.setEquation=x, (3.85)\ncircle2.setEquation=y, (1.0851*cos(t))\ncircle2.setEquation=z, (-.2+1.0851*sin(t))\ncircle2.setSegmentCount=20\ncircle2.setThickness=.2\ncircle2.color=black\ncircle2.spawn\n\n\n\n\n\n\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement