Re: Le mie (dis)avventure con TikZ

#96824
robitex
Amministratore del forum
    Up
    0
    Down
    ::


    Ciao.
    Io farei così molto semplicemente:
    `\documentclass[tikz]{standalone}

    \begin{document}
    \begin{tikzpicture}
    \draw [help lines] (0,0) grid (4,4);

    \fill[cyan!50] (2,1)
    arc (180:90:1)
    arc (270:180:1)
    arc (0:-90:1)
    arc (90:0:1);

    \draw [thick] (1,1) circle (1);
    \draw [thick] (3,1) circle (1);
    \draw [thick] (1,3) circle (1);
    \draw [thick] (3,3) circle (1);
    \end{tikzpicture}
    \end{document}`

    Saluti.
    R.

    Go to top