答案1
\documentclass[tikz, border=1cm]{standalone}
\usetikzlibrary{arrows.meta, bending}
\begin{document}
\begin{tikzpicture}
\foreach \t in {1,...,7}
\draw[thick, -{Stealth[width=3pt, length=4pt, red]}] (-180:\t/5) arc[start angle=-180, delta angle=450, radius={\t/5}];
\end{tikzpicture}
\end{document}
编辑:这是bend
建议的选项。请注意,这会使箭头本身变形。
\documentclass[tikz, border=1cm]{standalone}
\usetikzlibrary{arrows.meta, bending}
\begin{document}
\begin{tikzpicture}
\foreach \t in {1,...,7}
\draw[thick, -{Stealth[width=3pt, length=4pt, red, bend]}] (-180:\t/5) arc[start angle=-180, delta angle=450, radius={\t/5}];
\end{tikzpicture}
\end{document}