Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. // Jerry.bvr\n \n// Parametric Surface \nsphere=parametricSurface\nsphere.setMinMax=s, 0, 3.1415926\nsphere.setMinMax=t, 0, 6.6\nsphere.setEquation=x,(3*cos(t)*sin(s)) \nsphere.setEquation=y,(3*sin(t)*sin(s)) \nsphere.setEquation=z,(3*cos(s))\nsphere.setSegmentCount=30\nsphere.setthickness=0.2 \nsphere.color=green\nsphere.spawn \n\n// Parametric Curve \ng=parametricCurve\ng.setMinMax=t, 0, 6.6\ng.setEquation=x,(2*cos(t)) \ng.setEquation=y,(2*sin(t)) \ng.setEquation=z,(2.15) \ng.setSegmentCount=20\ng.color=red\ng.spawn \n\n// Parametric Curve\nr=parametricCurve\nr.setMinMax=t, 0, 6.6\nr.setEquation=x,(3*cos(t)) \nr.setEquation=y,(0) \nr.setEquation=z,(3*sin(t)) \nr.setSegmentCount=20\nr.setThickness=.15\nr.color=blue\nr.spawn\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement