I want to draw the plane x+y=1 in pgfplots. In this example, z is free and is not explicitly a function of x and y. So I cannot use
\addplot3[surf, fill=blue, opacity=0.1, fill opacity=0.4] {z=whatever};
I cannot parametrize the plane either, because the following syntax, instructing to take z to be free does not work:
\addplot3[surf, fill=blue, opacity=0.1, fill opacity=0.4] {x,-x+1,{}};
How can I do that? Perhaps by using scope and switching x and z axes, so that I can use one of the above standard syntax.
