TIKZ 选项 x = 是什么意思?

TIKZ 选项 x = 是什么意思?

我正在学习 TIKZ 绘图,但我不明白此代码中的选项 x= 是什么意思,有人可以向我解释一下吗,谢谢,代码如下所示:

\begin{tikzpicture}[even odd rule,rounded corners=2pt,x=10pt,y=10pt]
\filldraw[fill=yellow!80!black] (0,0) rectangle (1,1)
[xshift=5pt,yshift=5pt] (0,0) rectangle (1,1)
[rotate=30] (-1,-1) rectangle (2,2);
\end{tikzpicture}

这里的 x=10pt 是什么意思?

答案1

手册第 374 页:

关于手册中的 x-vector

x=10pt将 x 向量设置为10pt而不是法线1cm- 因此所有坐标都被缩放。

相关内容