Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. //ChangeFileNameHere.bvr\n\n//Parametric surface\nt=parametricSurface\nt.setMinMax=s,0,6.5\nt.setMinMax=t,0,6.5\nt.setEquation=x,((cos(s))*3*cos(t))\nt.setEquation=y,((cos(s))*3*sin(t))\nt.setEquation=z,(sin(s)^2)\nt.setSegmentCount=30 \nt.spawn\n\n\n//Parametric curve\nhahaha=parametricCurve\nhahaha.setMinMax=t,0,10\nhahaha.setEquation=x,(0)\nhahaha.setEquation=y,(3+sin(t))\nhahaha.setEquation=z,(cos(t)+3)\nhahaha.setSegmentCount=70\nhahaha.setThickness=0.5\nhahaha.color=white\nhahaha.spawn\n\n//Parametric curve\nhehehe=parametricCurve\nhehehe.setMinMax=t,0,10\nhehehe.setEquation=x,(3*cos(t))\nhehehe.setEquation=y,(3*sin(t))\nhehehe.setEquation=z,(0)\nhehehe.setSegmentCount=70\nhehehe.setThickness=0.4\nhehehe.color=red\nhehehe.spawn\n\n//Parametric surface\na=parametricSurface\na.setMinMax=s,0,6.5\na.setMinMax=t,0,6.5\na.setEquation=x,((2+cos(s))*cos(t))\na.setEquation=y,((2+cos(s))*sin(t))\na.setEquation=z,((2+cos(s))*sin(s)+2)\na.setSegmentCount=30 \na.spawn\n\n//Parametric surface\nb=parametricSurface\nb.setMinMax=s,0,6.5\nb.setMinMax=t,0,6.5\nb.setEquation=x,(cos(s)*3*cos(t))\nb.setEquation=y,(cos(s)*3*sin(t))\nb.setEquation=z,(sin(s)^2+5)\nb.setSegmentCount=30 \nb.spawn\n\n//Parametric curve\nheiheihei=parametricCurve\nheiheihei.setMinMax=t,0,10\nheiheihei.setEquation=x,(0)\nheiheihei.setEquation=y,(sin(t))\nheiheihei.setEquation=z,((cos(t)^2)^0.5+6)\nheiheihei.setSegmentCount=70\nheiheihei.setThickness=0.35\nheiheihei.color=green\nheiheihei.spawn\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement