I would like to shade the region between the two geodesics (a,b) and (b,c) in such a way that the color fades as the region becomes wider. This is the code
\documentclass{article}
\begin{document}
\begin{tikzpicture}
%circle
\draw (0,0) circle [radius=2];
% b
\filldraw (0,2) circle [radius=1pt];
\draw (0,2.3) node {$b$};
%a
\filldraw (-1,-1.73) circle [radius=1pt];
\draw (-1.2,-1.8) node {$a$};
%c
\filldraw (2,0) circle [radius=1pt];
\draw (2.3,0) node {$c$};
%geodesic (b,c)
\draw[name path=A, xshift=2cm, yshift=2cm, domain=180:270] plot(\x:2);
%geodesic (a,b)
\draw[name path=B, xshift=-6cm, yshift=1.6cm, domain=326:364] plot(\x:6);
\end{tikzpicture}
\end{document}
Can anybody tell me how to do it, please? Thanks a lot!

