注意!!!代码块的符号是反引号`
,不是左引号'
请善用“补充问题”和“预览”功能,为了论坛其他用户的良好观感
请勿必修改原问题的代码块标识符!
下面应该不是一个好的practice...抛砖引玉吧...
可以试试把他们放到两个scope
内...
\documentclass[border=8pt,tikz]{standalone}
\usepackage{tkz-euclide}
\begin{document}
\begin{tikzpicture}[scale=2,line join=round,line cap=round]
\tikzmath{\r=.02;}
\begin{scope}[
x={(-.4cm,-.4cm)},
y={(1cm,0cm)},
z={(0cm,1cm)},
]
\coordinate[label=45:$D$](D)at(0,0,0);
\coordinate[label=below:$A$](A)at(1,0,0);
\coordinate[label=right:$C$](C)at(0,1,0);
\coordinate[label=below:$B$](B)at(1,1,0);
\coordinate[label=left:$A_1$](A1)at(1,0,1);
\coordinate[label=right:$C_1$](C1)at(0,1,1);
\coordinate[label=above:$B_1$](B1)at(1,1,1);
\coordinate[label=above:$D_1$](D1)at(0,0,1);
\coordinate[label=left:$E$](E)at($(D)!.5!(A)$);
\coordinate[label=right:$F$](F)at($(B)!.5!(C)$);
\draw(A1)--(B1)--(C1)--(D1)--cycle (A1)--(B1)--(B)--(A)--cycle (B1)--(C1)--(C)--(B)--cycle;
\draw[dashed](D1)--(D)--(A) (C)--(D);
\draw[cyan,dashed] (A1)--(E)--(F)--cycle ;
\draw[cyan](B1)--(F);
\draw[red,dashed](A1)--(C);
\end{scope}
% a bit ugly code here...
\filldraw[cyan](.5,.5,.51)circle(\r) node[above] {$O$};
\end{tikzpicture}
\end{document}
问 立体中tikz画圆变成了椭圆