Advertisement
buckeyevr

Untitled

Feb 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. //ChangeFileNameHere.bvr\n\n//Sphere\nt=parametricSurface\nt.setMinMax=s,0,3.3\nt.setMinMax=t,0,6.6\nt.setEquation=x,(4*cos(t)*sin(s))\nt.setEquation=y,(4*sin(t)*sin(s))\nt.setEquation=z,(4*cos(s))\nt.color=blue\nt.setSegmentCount=30 \nt.spawn\n\n//Plane\np=parametricSurface\np.setMinMax=s,-5,5\np.setMinMax=t,-5,5\np.setEquation=x,(3)\np.setEquation=y,(s)\np.setEquation=z,(t)\np.color=green\np.setSegmentCount=30\np.spawn\n\n//Circle\nhelix=parametricCurve\nhelix.setMinMax=t,-5,5\nhelix.setEquation=x,(3)\nhelix.setEquation=y,(((7)^(1/2))*cos(t))\nhelix.setEquation=z,(((7)^(1/2))*sin(t))\nhelix.setSegmentCount=70\nhelix.setThickness=0.20\nhelix.color=red\nhelix.spawn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement