Überlappung von 2 surface plots (pgfplots)
Hallo Zusammen,
zusammen,
ich habe ein problem Problem mit pgfplots, vllt `pgfplots`, vielleicht kann mir jemd jemand hier helfen :)
Ich versuche versuche, 2 surface plots in einen graph Graph zu plotten. Das Problem ist, dass der letzte der beiden immer den ersten plot "überdeckt", d.h. keine Überlappung stattfindet. Mit transparency will ich nicht arbeiten, weil das nicht so schön aussieht.
Gibt es eine Möglichkeit, dass die plots Plots ineinander übergehen?
Hier mal ein einfaches beispiel:
Beispiel:
\documentclass[tikz]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usepackage{amsmath}
\usepackage{textcomp}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
colormap= {NEW}{rgb=(0,0.4,0.8) rgb=(0,0.4,0.8)},
width=8cm,
height=5cm,
view={-37.5}{30},
scale only axis,
xlabel={x},
xmajorgrids,
ylabel={y},
ymajorgrids,
zmin=0,
zmax=1,
ztick={0, 0.5, 1},
zlabel={z},
zmajorgrids,
axis x line*=bottom,
axis y line*=left,
axis z line*=left
]
\addplot3[%
surf,
shader=flat,
fill=red,
draw=black,
domain=0:1]
{y};
\addplot3[%
surf,
shader=flat,
fill=cyan,
draw=black,
domain=0:1]
{x};
\legend{f1, f2}
\end{axis}
\end{tikzpicture}%
\end{document}