Advertisement
buckeyevr

Untitled

Feb 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. // Extra Credit.bvr\n \n// Syrup \nhelix=parametricCurve\nhelix.setMinMax=t,4,5\nhelix.setEquation=x,((t-2)^2)\nhelix.setEquation=y,((t-2)^2)\nhelix.setEquation=z,(t^2)\nhelix.setSegmentCount=70\nhelix.setThickness=0.2 1\nhelix.color=red\nhelix.spawn\n \n// Cone\ncone=parametricSurface\ncone.setMinMax=s,0,2\ncone.setMinMax=t,0,6.6\ncone.setEquation=x,(s*cos(t))\ncone.setEquation=y,(s*sin(t))\ncone.setEquation=z,(3*s-5)\ncone.setSegmentCount=20\ncone.color=black\ncone.spawn \n\n// Ice Cream\nsphere=parametricSurface\nsphere.setMinMax=s,6,10\nsphere.setMinMax=t,0,25,20\nsphere.setEquation=x,(1.9*(cos(t)*sin(s)))\nsphere.setEquation=y,(1.9*(sin(t)*sin(s)))\nsphere.setEquation=z,(1.9*(cos(s)+.6))\nsphere.setSegmentCount=20\nsphere.color=fuchsia\nsphere.spawn\n\n//%14%14Syrup\nsyrup=parametricCurve\nsyrup.setMinMax=t,0,10\nsyrup.setEquation=x,(1.8*cos(t))\nsyrup.setEquation=y,(1.8*sin(t))\nsyrup.setEquation=z,(.2*t+.4)\nsyrup.setSegmentCount=70\nsyrup.setThickness=0.1\nsyrup.color=blue\nsyrup.spawn\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement