如何在曲线路径上的三个等距点处绘制等长的切线?
就像下面的弯曲三角形 我所能画的只是 MWE。 \documentclass[tikz]{standalone} \begin{tikzpicture} \draw (0,0) -- (4.5,0) -- (6,2) -- (1.5,2) -- cycle; \draw [xshift=3cm,yshift=1cm] (0,0) ellipse (1.2 and .6); \draw [xshift=3cm,yshift=1cm,->,teal] (0,.6) -- (.6,.6); \...