Advertisement
buckeyevr

Untitled

Feb 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. //IntersectingPlanes.bvr\n//Kayvon Sharifi\n\n//Plane -x-y+z=1\nplane=parametricSurface\nplane.setMinMax=s,-10,10\nplane.setMinMax=t,-10,10\nplane.setEquation=x,(t-s-1)\nplane.setEquation=y,(s)\nplane.setEquation=z,(t)\nplane.setSegmentCount=30\nplane.color=green\nplane.spawn\n\n//Plane x+z=1\np=parametricSurface\np.setMinMax=s,-10,10\np.setMinMax=t,-10,10\np.setEquation=x,(1-t)\np.setEquation=y,(s)\np.setEquation=z,(t)\np.setSegmentCount=30\np.color=red\np.spawn\n\n//Line at Intersection of Planes\nl=parametricCurve\nl.setMinMax=t,-10,10\nl.setEquation=x,(1-t)\nl.setEquation=y,(2*t-2)\nl.setEquation=z,(t)\nl.setSegmentCount=50\nl.setThickness=0.2\nl.color=blue\nl.spawn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement