我怎样才能在圆圈内制作这个三角形(在 TikZ 中)?

我怎样才能在圆圈内制作这个三角形(在 TikZ 中)?

这就是我想要的,如上图所示。此外,如果需要,我该如何旋转三角形?

答案1

作为您的起点和我的练习和乐趣:) ...

在此处输入图片描述

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

\begin{document}
\begin{tikzpicture}
    \begin{scope}[rotate=30]
\def\radij{22mm}
\coordinate (center) at (0,0);
\draw   (center) circle (\radij);
\draw   (center) -- (\radij,0) -- node[right] {$d$} (\radij,2*\radij) 
                 -- node[left,pos=0.25] {$h$} 
                    node[left,pos=0.75] {$r$} cycle;
    \end{scope}
\end{tikzpicture}
\end{document}

相关内容