Advertisement
buckeyevr

Untitled

Feb 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. //brianbowne.bvr\n\n//Parametric surface\nt=parametricSurface\nt.setMinMax=s,0,3.2\nt.setMinMax=t,0,6.5\nt.setEquation=x,((3cos(t))*sin(s))\nt.setEquation=y,(3*sin(s))*sin(t))\nt.setEquation=z,(3cos(s))\nt.setSegmentCount=30 \nt.spawn\n\n//Parametric curve\ngreatcircle=parametricCurve\ngreatcircle.setMinMax=t,-12,12\ngreatcircle.setEquation=x,(cos(t))\ngreatcircle.setEquation=y,(sin(t))\ngreatcircle.setSegmentCount=70\ngreatcircle.setThickness=0.15\ngreatcircle.color=red\ngreatcircle.spawn\n\n//Parametric curve\ncircle=parametricCurve\ncircle.setMinMax=t,-12,12\ncircle.setEquation=x,(cos(t))\ncircle.setEquation=y,(sin(t))\ncircle.setSegmentCount=70\ncircle.setThickness=0.15\ncircle.color=blue\ncircle.spawn\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement