How can I have a filled area like this:
With a curvy line. In the sense of: it continues here
\documentclass[margin=5pt, tikz]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[]
\filldraw[fill=cyan] (0,0) -- (250:2) arc (250:250+44:2) -- (0,0);
\end{tikzpicture}
\end{document}


