Advertisement
buckeyevr

Untitled

Feb 20th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. //ChangeFileNameHere.bvr\n\n//Parametric Plane 1\na=parametricSurface\na.setMinMax=s,-5,5\na.setMinMax=t,-5,5\na.setEquation=x,(s)\na.setEquation=y,(t)\na.setEquation=z,(s+t+1)\na.setSegmentCount=20\na.color = green\na.spawn\n\n//Parametric Plane 2\nb=parametricSurface\nb.setMinMax=s,-5,5\nb.setMinMax=t,-5,5\nb.setEquation=x,(s+t)\nb.setEquation=y,(0)\nb.setEquation=z,(1-s-t)\nb.setSegmentCount=20\nb.color = red\nb.spawn\n\n//Intersecting Line\nc=parametricCurve\nc.setMinMax=t,-5,5\nc.setEquation=x,(-t+1)\nc.setEquation=y,((2*t)-2)\nc.setEquation=z,(t)\nc.setSegmentCount=20\nc.setThickness=0.2\nc.color=blue\nc.spawn\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement