如何\addplot3
在特定平面上进行着色?
例如,如果我们考虑单位立方体,我想要为平面x = 1
、y = 1
、着色z = 1
。
这是我目前得到的全部信息:
\begin{tikzpicture}
\begin{axis}
\addplot3[fill=blue]{x=1, y=1, z=1};
coordinates{
(1,0,0)
(0,1,0)
(0,0,1)
};
\end{axis}
\end{tikzpicture}
谢谢。
答案1
像这样?
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[view={20}{10}]
\addplot3[fill=blue]
coordinates{
(1,0,0)
(1,1,0)
(1,1,1)
(1,0,1)
};
%\addplot3[fill=red]
%coordinates{
%(0,1,0)
%(1,1,0)
%(1,1,1)
%(0,1,1)
%};
\addplot3[fill=magenta]
coordinates{
(0,0,1)
(0,1,1)
(1,1,1)
(1,0,1)
};
\end{axis}
\end{tikzpicture}
\end{document}