Advertisement
buckeyevr

Untitled

Feb 20th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. // Example Combined.bvr\n \n// Parametric surface\ncyl=parametricSurface\ncyl.setMinMax=s,-10,10\ncyl.setMinMax=t,-10,10\ncyl.setEquation=x,(t)\ncyl.setEquation=y,(s)\ncyl.setEquation=z,(2t-5s)\ncyl.setSegmentCount=20\ncyl.color=green\ncyl.spawn \n \n// Parametric surface\ncyl=parametricSurface\ncyl.setMinMax=s,-10,10\ncyl.setMinMax=t,-10,10\ncyl.setEquation=x,(s)\ncyl.setEquation=y,(t)\ncyl.setEquation=z,(s-t)\ncyl.setSegmentCount=20\ncyl.color=green\ncyl.spawn \n\n// Parametric curve\nhelix=parametricCurve\nhelix.setMinMax=t,-8,9\nhelix.setEquation=x,(t)\nhelix.setEquation=y,(t-2)\nhelix.setEquation=z,(2)\nhelix.setSegmentCount=70\nhelix.setThickness=0.5\nhelix.color=blue\nhelix.spawn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement