如何用圆弧画平行线

如何用圆弧画平行线

有人知道如何画出与左垂直线平行的右垂直线吗?

代码:

\documentclass{standalone}

\usepackage{tikz}


\begin{document}

    \begin{tikzpicture}
    
       \draw[step=1ex,black!10,thin] (-4ex,-20ex) grid (15ex,50ex);
    
       \draw (0ex,0ex) arc [start angle=135, end angle=405, radius=6ex] -- (7ex,50ex) -- (0ex,50ex) -- (0ex,0ex);

    \end{tikzpicture}

\end{document}

输出:

在此处输入图片描述

答案1

您已非常接近所需的解决方案。请尝试以下操作:

\documentclass[margin=3mm]{standalone}
\usepackage{tikz}

\begin{document}
    \begin{tikzpicture}
\draw[step=1ex,black!10,thin] (-4ex,-12ex) grid ++ (16ex,64ex);
%
\draw (0,0) arc [start angle=135, end angle=405, radius=6ex] -- ++ (0,50ex) -| cycle;
    \end{tikzpicture}
\end{document}

在此处输入图片描述

您的解决方案和我的解决方案之间的区别在于使用相对坐标和正交坐标。

相关内容