pgf/tikz에서 3호의 겹치는 부분을 채우는 방법은 무엇입니까?

pgf/tikz에서 3호의 겹치는 부분을 채우는 방법은 무엇입니까?

아래와 같은 사진이 있습니다.

\documentclass{article}
\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
  \draw(0,0) -- (4,0) -- (4,4) -- (0,4) -- (0,0);
  \draw(0,0) arc(-90:90:2);
  \draw[dashed](0,0) arc(-90:-270:2);  
  \draw(0,0) arc(180:90:4);
  \draw(0,0) arc(180:90:4);
  \draw[dashed](0,0) arc(-180:90:4);  
  \draw(4,0) arc(-90:-180:4);
  \draw[dashed](4,0) arc(-90:180:4);  
\end{tikzpicture}

\end{document}

이제 3개의 호가 겹쳐진 부분에 그림자를 그려보겠습니다. 어떻게 해야 합니까? 이 그림과 같습니다:

그리고 ABC 사이에 선을 긋고 싶다면 어떻게 해야 합니까? 매우 감사합니다!

여기에 이미지 설명을 입력하세요

답변1

채우기 선의 그림자를 제외하고는 이와 같은 것입니다. 채우기는 환경 \clip내부 의 도움을 받아 수행할 수 있습니다 scope. 교차점에 좌표를 설정하려면 intersections라이브러리를 사용하십시오.

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{patterns,intersections}
\begin{document}

\begin{tikzpicture}
  \begin{scope}
    \clip(0,2) circle (2);
    \clip(4,0) circle (4);
    \fill[pattern=north west lines,pattern color=red](4,4) circle (4);
  \end{scope}
  %\draw(0,0) -- (4,0) -- (4,4) -- (0,4) -- (0,0);
  \draw (0,0) rectangle (4,4);
  \draw[name path=left](0,0) arc(-90:90:2);
  \draw[dashed](0,0) arc(-90:-270:2);  
  \draw[name path=lower](0,0) arc(180:90:4);
  %\draw(0,0) arc(180:90:4);
  \draw[dashed](0,0) arc(-180:90:4);  
  \draw[name path=upper](4,0) arc(-90:-180:4);
  \draw[dashed](4,0) arc(-90:180:4);  
  %%
  \path [name intersections={of=lower and upper}];
  \coordinate (A) at (intersection-1);
  \path [name intersections={of=left and upper}];
  \coordinate (B) at (intersection-1);
  \path [name intersections={of=left and lower}];
  \coordinate (C) at (intersection-2);
  %%
  \node[left,red] at (A) {A};
  \node[below,red] at (B) {B};
  \node[above,red] at (C) {C};
  %%
  \fill[blue,fill=blue,opacity=0.3] (A)--(B)--(C)--cycle;
  \draw[blue,thick] (A)--(B)--(C)--cycle;
\end{tikzpicture}

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보