Advertisement
buckeyevr

Untitled

Feb 22nd, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. //NAVARAMAZANALI.bvr\n\n//Parametric plane\nplane=parametricSurface\nplane.setMinMax=s,-7,7\nplane.setMinMax=t,-10,3.5\nplane.setEquation=x,(t)\nplane.setEquation=y,(s+t)\nplane.setEquation=z,(1+s+2t)\nplane.setSegmentCount=30 \nplane.color=aqua\nplane.spawn\n\n//Parametric line of intersection\nintersection=parametricCurve\nintersection.setMinMax=t,-8.5,3.7\nintersection.setEquation=x,(t)\nintersection.setEquation=y,(-2t)\nintersection.setEquation=z,(1-t)\nintersection.setSegmentCount=30\nintersection.setThickness=0.3\nintersection.color=magenta\nintersection.spawn\n\n\n//Parametric plane 2\nplane2=parametricSurface\nplane2.setMinMax=s,-10,5\nplane2.setMinMax=t,-5,10\nplane2.setEquation=x,(-s-4t)\nplane2.setEquation=y,(-s-t)\nplane2.setEquation=z,(1+s+4)\nplane2.setSegmentCount=30 \nplane2.color=yellow\nplane2.spawn\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement