I have a number of paths, quad-circles in this case, which intersect to define a complex region in the middle of the graph. How do I fill the A - B - C - D region in the image below? I prefer a solution that makes no assumptions on the formulation of the paths, i.e.: they can be Bezier curves with random control points instead of quadrant of a circle.
\documentclass{minimal}
\usepackage{tikz}
\usetikzlibrary{calc,intersections,through}
\begin{document}
\begin{tikzpicture}
\path[draw,clip] (0,0) rectangle (6,6);
\node(circle 1)[draw, circle through={(6,0)}] at (0,0) {};
\node(circle 2)[draw, circle through={(0,0)}] at (6,0) {};
\node(circle 3)[draw, circle through={(6,0)}] at (6,6) {};
\node(circle 4)[draw, circle through={(0,0)}] at (0,6) {};
\coordinate[label=A](A) at (intersection 2 of circle 1 and circle 2);
\coordinate[label=B](B) at (intersection 1 of circle 1 and circle 4);
\coordinate[label=C](C) at (intersection 2 of circle 3 and circle 4);
\coordinate[label=D](D) at (intersection 2 of circle 2 and circle 3);
\end{tikzpicture}
\end{document}






(intersection 2 of circle 1 and circle 2)in the manual 3.0.1a, neither in the 2.10 nor in the 1.18, where does it come from? – AndréC Dec 16 '18 at 19:52