I´ve tried using arcs to get the picture below, but I have to precise a specific center for each arc, because they don´t finish in the point which they should. Instead of arcs, I want to use curve paths to define the filled regions. How to draw or include in my code curve paths?. Maybe There's other solutions. I need your help.
\documentclass[10pt,a4paper]{book}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[step=.2cm,gray!15,very thin](-2cm,-2cm)grid(2cm,2cm);
\draw[gray!30](-2cm,0) -- (2cm,0);
\draw[gray!30](0cm,-2cm) -- (0,2cm);
\draw (0cm,1.5576cm)--(0cm,.6227cm).. controls (.05cm,.28cm) and (.25cm,.2cm) ..(.6512cm,0cm)--(.6512cm,.9076cm) .. controls (.4cm,1cm)and(.1cm,1.1cm)..(0cm,1.5576cm);
\draw (0cm,1.5576cm).. controls (.12cm,1.2cm)and(.45cm,1.1cm)..(.8118cm,.9918cm)--(.8118cm,.0931cm)--(.9764cm,.2014cm)--(.9764cm,1.0681cm) .. controls (.45cm,1.12cm)and(.15cm,1.31cm)..(0cm,1.5576cm);
\draw (0cm,1.5576cm).. controls (.2cm,1.32cm)and(.7cm,1.21cm)..(1.141cm,1.1644cm)--(1.141cm,.3418cm)--(1.3016cm,.6227cm)--(1.3016cm,1.2727cm) .. controls (.7cm,1.3cm)and(.2cm,1.4cm)..(0cm,1.5576cm);
\draw (0cm,1.5576cm).. controls (.2cm,1.47cm)and(.7cm,1.3cm)..(1.3016cm,1.4212cm)--(1.3016cm,1.5576cm) .. controls (.7cm,1.45cm)and(.2cm,1.5cm)..(0cm,1.5576cm);
\end{tikzpicture}
\end{document}
The desired output:

Output of the MWE:

This is the picture which shows the problem I want to solve, I want to define the center of the arc. Also, instead of draw an arc, I'd like to include curve paths to include different radius.




--cycle;at the end of each\drawcommand, that will complete the path, enabling it to be filled. Then add[fill=<color>]and you will have your figure. Furthermore, you are probably not requiring the black drawed edge. Thus you should do\path[fill=<color>] <path construction> -- cycle;. Apparently..cyclehas not been added to the function of curves with control points. – zeroth Feb 2 at 20:34