我怎样才能在 circuitikz 中绘制一个以 (11,-2) 为中心、半径为 3cm 的“circlearrowright”?(以及我需要什么包裹?)谢谢!
答案1
不确定这是否是您想要的。
命令后的第一个坐标\draw
将当前笔位置移动到圆心。下一个标记为的坐标将++()
笔移动到相对的到当前位置。现在arc
从当前笔位置开始绘制起始角度, 至结束角度指定半径。
注意相对移动中指定的角度必须与圆弧的起始角度相同。
\documentclass[12pt, tikz]{standalone}
\begin{document}
\begin{tikzpicture}[scale=1]
%% below code required only for MWE
\useasboundingbox (7,-6) rectangle (15,2);
\node [fill, circle, inner sep=0pt, minimum size=2pt](mycentre) at (11,-2){};
\node [below of=mycentre] {$(11,-2)$};
%below code is for the circle with arrow
\draw [-latex, thick]
(11, -2) %centre of the circle
++(0:3cm) %start the arc 'radius'cm away from centre
arc (0:270:3cm); %arc from 0deg to 270deg with radius
\end{tikzpicture}
\end{document}