Advertisement
buckeyevr

Untitled

Feb 20th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. //ChangeFileNameHere.bvr\n\n//Parametric curve\nhelix=parametricCurve\nhelix.setMinMax=t,-12,12\nhelix.setEquation=x,(cos(t))\nhelix.setEquation=y,(sin(t))\nhelix.setEquation=z,(.3*t)\nhelix.setSegmentCount=70\nhelix.setThickness=0.15\nhelix.color=red\nhelix.spawn\n\ncurve=parametricCurve\ncurve.setMinMax=t,-12,12\ncurve.setEquation=x,(cos(t))\ncurve.setEquation=y,(sin(t))\ncurve.setEquation=z,(.3*t-.3)\ncurve.setSegmentCount=70\ncurve.setThickness=0.1\ncurve.color=blue\ncurve.spawn\n\npara=parametricCurve\npara.setMinMax=t,-12,12\npara.setEquation=x,(cos(t))\npara.setEquation=y,(sin(t))\npara.setEquation=z,(.3*t-.6)\npara.setSegmentCount=70\npara.setThickness=0.1\npara.color=cyan\npara.spawn\n\nmet=parametricCurve\nmet.setMinMax=t,-12,12\nmet.setEquation=x,(cos(t))\nmet.setEquation=y,(sin(t))\nmet.setEquation=z,(.3*t-.9)\nmet.setSegmentCount=70\nmet.setThickness=0.1\nmet.color=magenta\nmet.spawn\n\nme=parametricCurve\nme.setMinMax=t,-12,12\nme.setEquation=x,(sin(t))\nme.setEquation=y,(cos(t))\nme.setEquation=z,(.3*t-.1)\nme.setSegmentCount=70\nme.setThickness=0.1\nme.color=green\nme.spawn\n\nm=parametricCurve\nm.setMinMax=t,-12,12\nm.setEquation=x,(sin(t))\nm.setEquation=y,(cos(t))\nm.setEquation=z,(.3*t-.5)\nm.setSegmentCount=70\nm.setThickness=0.1\nm.color=grey\nm.spawn\n\nmom=parametricCurve\nmom.setMinMax=t,-12,12\nmom.setEquation=x,(sin(t))\nmom.setEquation=y,(cos(t))\nmom.setEquation=z,(.3*t-.7)\nmom.setSegmentCount=70\nmom.setThickness=0.1\nmom.color=yellow\nmom.spawn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement