buckeyevr

Untitled

Feb 22nd, 2019
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. //Thomas.bvr\n\n//Parametricsurface\nsphere=parametricSurface\nsphere.setMinMax=s,0,3.3\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=40\nsphere.color=cyan\nsphere.spawn\n\n//Parametriccurve\ncircle=parametricCurve\ncircle.setMinMax=t,0,6.6\ncircle.setEquation=x,(3*cos(t))\ncircle.setEquation=y,(3*sin(t))\ncircle.setEquation=z,(0)\ncircle.color=red\ncircle.setThickness=0.2\ncircle.setSegmentCount=30\ncircle.spawn\n\n//Parametriccurve\ncircle2=parametricCurve\ncircle2.setMinMax=t,0,6.6\ncircle2.setEquation=x,(2)\ncircle2.setEquation=y,(2.236*sin(t))\ncircle2.setEquation=z,(2.236*cos(t))\ncircle2.color=blue\ncircle2.setThickness=0.2\ncircle2.setSegmentCount=30\ncircle2.spawn\n
Add Comment
Please, Sign In to add comment