I am trying to make a 3d plots as follows. This is my MWE:
\begin{tikzpicture}
\begin{axis}[xlabel=$x$, ylabel=$y$, zlabel={$z$},legend pos=outer north east,z post scale=1.1,grid=both,view={50}{-10}, restrict z to domain={-3:3}]
\addplot3 [surf,
samples=10,
domain=-2:2 ,
opacity=1,
color=gray!20,z buffer=auto] {(x-2*y-4)/-3};
\addplot3 [surf,
samples=10,
domain=-2:2 ,
opacity=1,
color=gray!20,z buffer=auto] {2*x+3*y-1};
\addplot3 [surf,
samples=10,
domain=-2:2 ,
opacity=1,
color=gray!20,z buffer=auto] {(4*x-y-1)/-5};
\end{axis}
\end{tikzpicture}
Honestly, it works but, I am getting trouble while showing the students: These 3 planes intersect mutually and there is not a single point.
Maple tells me that the ranges as I selected is good to look so I am sure of it:
Do you think I should have considered a certain view point or you have a clue for me? Thanks
