答案1
获取方式有两种贝塞尔曲線。
- 第一个使用语法
[out=70,in=20,looseness=2]
参见74 To Path Library
手册 - 第二个使用语法
..controls (-2,-4) ..
参见14.3 The Curve-To Operation
更新(使用极坐标)
正如 Ignasi 所说
\documentclass[tikz,border=5mm]{standalone}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}[>={Straight Barb[length=5mm,width=5mm]}]
\draw (0,0) circle (3cm);
\draw[->](20:2.5)to[out=70,in=20,looseness=2](120:2.5);
\draw [->](-45:1.5) ..controls (-120:4.5) .. (190:2.5);
\end{tikzpicture}
\end{document}
(旧答案)具有隐式直角坐标
\documentclass[tikz,border=5mm]{standalone}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}[>={Straight Barb[length=5mm,width=5mm]}]
\draw (0,0) circle (3cm);
\draw[->](2,1)to[out=70,in=20,looseness=2](-1,2);
\draw [->](1.5,-1.5) ..controls (-2,-4) .. (-2,-1);
\end{tikzpicture}
\end{document}