Advertisement
buckeyevr

Untitled

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