Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. //Sphere.bvr\n\n//Parametric surface\nsphere=parametricSurface\nsphere.setMinMax=s,0,3.2\nsphere.setMinMax=t,0,6.5\nsphere.setEquation=x,( (2*cos(t)*sin(s)) )\nsphere.setEquation=y,( (2*sin(t)*sin(s)) )\nsphere.setEquation=z,( (2*cos(s)) )\nsphere.setSegmentCount=30\nsphere.setColor=blue\nsphere.spawn\n\n//parametric curve\nsmallCircle=parametricCurve\nsmallCircle.setMinMax=t,0,6.5\nsmallCircle.setEquation=x,(2*cos(t))\nsmallCircle.setEquation=z,(2*sin(t))\nsmallCircle.setSegmentCount=40\nsmallCircle.setThickness=0.15\nsmallCircle.color=red\nsmallCircle.spawn%12%12%12%12%12%12\n\n//parametric curve\nbigCircle=parametricCurve\nbigCircle.setMinMax=t,0,6.5\nbigCircle.setEquation=x,(1.3*cos(t))\nbigCircle.setEquation=y,(1.3*sin(t))\nbigCircle.setEquation=z,(1.5)\nbigCircle.setSegmentCount=40\nbigCircle.setThickness=0.15\nbigCircle.color=blue\nbigCircle.spawn\n\n\n\n\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement