如何创建包含圆弧的路径?

如何创建包含圆弧的路径?

我试图用一个命令做出这样的事情: 图。1

我通过以下代码执行此操作:

\begin{tikzpicture}
    \draw (0,0) circle (1);
    \fill[blue] plot[smooth, left] coordinates  {(1,0) (0,0)  (0,1)}; 
    \fill[blue] (0,0) -- (1,0) arc (0:90:1) -- (0,0); % Q-Line
\end{tikzpicture}

如果我移动Q-Line这个,我会得到: 图2

我的问题是:如果有任何选择可以制作第一个图形,但在一个命令?即放入\fill[blue] plot[smooth, left] coordinates {(1,0) (0,0) (0,1)}弧线?(或者如果可能的话,用其他方法)。

谢谢你!!

答案1

\documentclass[tikz, border=1cm]{standalone}
\begin{document}
\begin{tikzpicture}
    \draw (0,0) circle (1);
    \fill[blue] plot[smooth] coordinates  {(0,1) (0,0)  (1,0)} arc (0:90:1); 
\end{tikzpicture}
\end{document}

区域填充的圆圈

不建议使用这种arc( : : )符号,但它确实有效。以下是正确的书写方式:

\fill[blue] plot[smooth] coordinates  {(0,1) (0,0)  (1,0)} arc[start angle=0, end angle=90, radius=1] ; 

相关内容