答案1
在 3D 中使用 Tikz 与在 2D 中使用基本相同 - 除了您必须使用 3D 坐标而不是 2D 坐标。
下面展示了如何绘制 3D 框(如您所见,您可以混合使用 2D 和 3D 坐标。在这种情况下,2D 表示的 z 坐标自动假定为零):
\beging{tikzpicture}
\draw (0,0) -- ++(8,0) -- ++(0,-4) -- ++(-8,0) -- ++(0,4) -- ++(0,0,-4) -- ++(8,0) -- ++(0,-4) -- ++(0,0,4) ++(0,4,0) -- ++(0,0,-4);
\draw[dashed] (0,-4) -- ++(0,0,-4) -- ++(8,0,0) ++(-8,0) -- ++(0,4);
\end{tikzpicture}
下面是一个稍微复杂一点的例子(电磁波):
\begin{tikzpicture}[x={(-10:1cm)},y={(90:1cm)},z={(210:1cm)}]
% Axes
\draw[->] (-1,0,0) node[above] {$x$} -- (5,0,0);
\draw[->] (0,0,0) -- (0,2,0) node[above] {$y$};
\draw[->] (0,0,0) -- (0,0,2) node[left] {$z$};
% Waves
\draw[red,thick] plot[domain=0:4.5,samples=200] (\x,{cos(deg(pi*\x))},0);
\draw[blue,thick] plot[domain=0:4.5,samples=200] (\x,0,{cos(deg(pi*\x))});
% Arrows
\foreach \x in {0.1,0.3,...,4.4} {
\draw[red] (\x,0,0) -- (\x,{cos(deg(pi*\x))},0);
\draw[blue] (\x,0,0) -- (\x,0,{cos(deg(pi*\x))});
}
% Labels
\node[red, above right] at (0,1,0) {$\vec{\bm{E}}$};
\node[below, blue] at (0,0,1) {$\vec{\bm{H}}$};
\end{tikzpicture}