Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. //Intersecting Planes.bvr\n\n//plane\np1=parametricSurface\np1.setMinMax=s,-4,4\np1.setMinMax=t,-3,7\np1.setEquation=x,(t)\np1.setEquation=y,(s)\np1.setEquation=z,(1-t)\np1.setSegmentCount=25\np1.color=red\np1.spawn\n\n//plane1\np2=parametricSurface\np2.setMinMax=s,-4,4\np2.setMinMax=t,-4,4\np2.setEquation=x,(t)\np2.setEquation=y,(s)\np2.setEquation=z,(1+t+s)\np2.setSegmentCount=25\np2.color=blue\np2.spawn\n\n//curve\nline=parametricCurve\nline.setMinMax=t,-4,4\nline.setEquation=x,(-1/2*t)\nline.setEquation=y,(t)\nline.setEquation=z,(1/2*t+1)\nline.setSegmentCount=25\nline.color=green\nline.spawn\n\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement