\draw(0, \x, 4) 是什么意思?

\draw(0, \x, 4) 是什么意思?

如何轻松查看 latex 参数?是什么\draw(0, \x, 4)意思?这里只有 2 个输入参数https://www.sharelatex.com/blog/2013/08/27/tikz-series-pt1.html

\begin{tikzpicture}
\foreach \x in{0,...,4}
{   \draw (0,\x ,4) -- (4,\x ,4);
    \draw (\x ,0,4) -- (\x ,4,4);
    \draw (4,\x ,4) -- (4,\x ,0);
    \draw (\x ,4,4) -- (\x ,4,0);
    \draw (4,0,\x ) -- (4,4,\x );
    \draw (0,4,\x ) -- (4,4,\x );
}
\end{tikzpicture}

答案1

TikZ 还支持开箱即用的 3D 坐标。请参阅“13.2.1 画布、XYZ 和极坐标系”手动的

在此处输入图片描述

相关内容