Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. //CreativeRose.bvr\n\n//Parametric surface\nt=parametricSurface\nt.setMinMax=s,0,6.5\nt.setMinMax=t,0,6.5\nt.setEquation=x,((4*cos(4*t))*(cos(s))^8*cos(t)*cos(s))\nt.setEquation=y,((4*cos(4*t))*(cos(s))^8*sin(t)*cos(s))\nt.setEquation=z,(4*cos(4*t)*(cos(s))^8*sin(s))\nt.setSegmentCount=30 \nt.color=red\nt.spawn\n\n//sphere\ns=sphere\ns.position=0,0,0\ns.color=255,193,193\ns.spawn\n\n//Parametric curve\nhelix=parametricCurve\nhelix.setMinMax=t,-7,-1\nhelix.setEquation=x,(t)\nhelix.setEquation=y,(cos(t)/7)\nhelix.setEquation=z,(sin(t)/7)\nhelix.setSegmentCount=70\nhelix.setThickness=0.15\nhelix.color=0,50,0\nhelix.spawn\n\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement