Advertisement
buckeyevr

Untitled

Feb 21st, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. //sphere.bvr\n\n//Parametricsurface\ncyl=parametricSurface\ncyl.setMinMax=s,0,3.3\ncyl.setMinMax=t,0,6.6\ncyl.setEquation=x,(3*cos(t)*sin(s))\ncyl.setEquation=y,(3*sin(t)*sin(s))\ncyl.setEquation=z,(3*cos(s))\ncyl.setSegmentCount=20\ncyl.color=blue\ncyl.spawn\n\n// Parametric curve\nhelix=parametricCurve\nhelix.setMinMax=t,-10,10\nhelix.setEquation=x,(2.598076*cos(t))\nhelix.setEquation=y,(2.598076*sin(t))\nhelix.setEquation=z,(1.5)\nhelix.setSegmentCount=70\nhelix.setThickness=0.2\nhelix.color=red\nhelix.spawn\n\n// p2 curve\nhelix=parametricCurve\nhelix.setMinMax=t,-10,10\nhelix.setEquation=x,(2.598076*cos(t))\nhelix.setEquation=y,(1.5)\nhelix.setEquation=z,(2.598076*sin(t))\nhelix.setSegmentCount=70\nhelix.setThickness=0.2\nhelix.color=yellow\nhelix.spawn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement