buckeyevr

Untitled

Feb 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. //SphereandPlane.bvr\n\n/Parametric Surface: Plane\n\nsphere = parametricSurface\nsphere.setMinMax = s, 0, 3.2\nsphere.setMinMax = t, 0, 6.6\nsphere.setEquation = x,(4*cos(t)*sin(s))\nsphere.setEquation = y,(4*sin(t)*sin(s))\nsphere.setEquation = z, (4*cos(s))\nsphere.setSegmentCount = 25\nsphere.color = blue\nsphere.spawn\n\n//Parametric Surface: Plane\n\nplane = parametricSurface\nplane.setMinMax = t, -5, 5\nplane.setMinMax = s, -5, 5\nplane.setEquation = x, (3)\nplane.setEquation = y, (t)\nplane.setEquation = z, (s)\nplane.setSegmentCount = 25\nplane.color = green\nplane.spawn\n\n//Parametric Curve: Circle\n\ncircle = parametricCurve\ncircle.setMinMax = t, -6.5, 6.5\ncircle.setEquation = x, (3)\ncircle.setEquation = y, (sqrt(7)*cos(t))\ncircle.setEquation = z, (sqrt(7)*sin(t))\ncircle.setSegmentCount = 70\ncircle.setThickness = 0.25\ncircle.color = red\ncircle.spawn\n
Add Comment
Please, Sign In to add comment