Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. //IntersectingPlanes.bvr\n\n//Planeone \n\nplane=parametricSurface\nplane.setMinMax=s,-5,5\nplane.setMinMax=t,-5,5\nplane.setEquation=x,(s)\nplane.setEquation=y,(t)\nplane.setEquation=z,(s+t+1)\nplane.setSegmentCount=30\nplane.color=green\nplane.spawn\n\n\n//Planetwo\n\nplanet=parametricSurface\nplanet.setMinMax=s, -5,5\nplanet.setMinMax=t, -5,5\nplanet.setEquation=x,(s)\nplanet.setEquation=y,(t)\nplanet.setEquation=z,(-s+1)\nplanet.setSegmentCount = 30\nplanet.color=red\nplanet.spawn\n\n//Lineintersection\n\nline=parametricCurve\nline.setMinMax=t,-5,5\nline.setEquation=x,(-.5*t)\nline.setEquation=y,(t)\nline.setEquation=z,(.5*t+1)\nline.setSegmentCount = 70\nline.setThickness=0.15\nline.color=blue\nline.spawn\n\n//Text\ntxt=text\ntxt.text= Intersecting Planes\ntxt.color=green\ntxt.position=0,0,4\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement