如何将矢量

如何将矢量
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=0.5cm,y=0.5cm]
\clip(-0.07329043126526,-0.796492988559363) rectangle (9.967791037095613,9.97807138066155);
\draw [->,line width=2pt] (0,5)--(10,5) ;
\draw [->,line width=2pt] (5,0) -- (5,10);
\draw [shift={(10-5,5.001014801310472)},line width=2pt,color=ffqqqq]  plot[domain=1.5707963267948966:2.8257080879245375,variable=\t]({1*2.4229434178792486*cos(\t r)+0*2.4229434178792486*sin(\t r)},{0*2.4229434178792486*cos(\t r)+1*2.4229434178792486*sin(\t r)});
\draw [->,line width=2pt,color=ffqqqq] (2.696939088106593,5.7537200838434694) -- (2.544859707985099,5);
\begin{scriptsize}
\draw [fill=black] (10,9.833835474935935) circle (0.5pt);
\draw[color=black] (7.00904720302078,9.489934628472703) node {\Large {$Fork$}};
\draw [fill=black] (5.674489813878187,5) circle (0.5pt);
\draw[color=black] (1.399712145615680487,4.03933260822143) node {\Large {$Noodle$}};
\end{scriptsize}
\end{tikzpicture}

我需要把这个红色弧线转到另一边,不要改变起点

答案1

这确实是一种高水平的自动化:将 inkscape 生成的图形上传到这里进行微调。

\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{arrows.meta,bending}
\definecolor{ffqqqq}{RGB}{255,0,0}
\begin{document}
\begin{tikzpicture}[line cap=round,line join=round,>={Triangle[bend]},x=0.5cm,y=0.5cm]
\clip(-0.07329043126526,-0.796492988559363) rectangle (9.967791037095613,9.97807138066155);
\draw [->,line width=2pt] (0,5)--(10,5) ;
\draw [->,line width=2pt] (5,0) -- (5,10);
\draw [<-,shift={(10-5,5.001014801310472)},line width=2pt,color=ffqqqq] (0,2) arc(90:180:2);
\draw [fill=black] (10,9.833835474935935) circle (0.5pt);
\draw[color=black] (7.00904720302078,9.489934628472703) node[font=\Large] {Fork};
\draw [fill=black] (5.674489813878187,5) circle (0.5pt);
\draw[color=black] (1.399712145615680487,4.03933260822143) node[font=\Large] {Noodle};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容