Hi!I have two questions about my current paper. Sorry for my poor hand drawing.
- How can I fill an Arbitrary part (Red area with A)?
- I want to draw some lines from the buttom curve of filled Area A than stop at Line CD. I think intersect command should be used. But I don't know how to do it.
Thanks for helping me.
\usepackage{tikz-dimline,wasysym}%dimensional lines
\begin{figure}
\centering
\caption{Caption}
\begin{tikzpicture}
\coordinate (origin) at (0,0);
\coordinate (A) at (135:2);
\coordinate (B) at (-45:2);
\coordinate (C) at (-70:2);
\coordinate (D) at (-110:2);
\draw (C)--++(0,0.5) coordinate (E);
\draw (D)--++(0,0.5) coordinate (F);
\draw (E)--node[below] {shoe} (F);
\draw (origin) circle [radius=2cm];
\draw [<->,thick](B)--node[below] {D} (A);
\draw (C)--++(-45:0.5) coordinate (G);
\draw (D)--++(-45:0.5) coordinate (H);
\draw (G)--(H);
\draw (-80:2)--++(-45:0.5);
\draw (-90:2)--++(-45:0.5);
\draw (-100:2)--++(-45:0.5);
\dimline[line style = {line width=0.7,
arrows=dimline reverse-dimline reverse},extension start
length=0.14,extension end length=0.14,label style={above}] {(E)}{(F)}
{ABC};
\label{fig:my_label}
\end{tikzpicture}
\end{figure}

