Re: creare esagoni con smartdiagram

#93816
Up
0
Down
::

light kira” post=93408immagino che a questo punto creando semplici esagoni, sarà facile anche gestire colore e bordi delle forme, o sbaglio?

Assolutamente. Parti da un esempio come `
\documentclass[tikz,border=10pt]{standalone}
\usetikzlibrary{shapes.geometric}

\tikzset{esagono/.style={regular polygon, regular polygon sides=6}}

\begin{document}

\begin{tikzpicture}
\node[esagono,
top color=orange!10,
bottom color=red!80!orange!70,
draw=red!80!orange] (es-1)
at (0,0) {Ciao};

\node[esagono,
top color=green!10,
bottom color=green!60!lime!70,
draw=green!60!lime,
anchor=side 6] (es-2)
at (es-1.side 3) {Ciao};

\node[esagono,
top color=blue!10,
bottom color=blue!50!cyan!50,
draw=blue!50!cyan,
anchor=side 2] (es-3)
at (es-1.side 5) {Ciao};
\end{tikzpicture}

\end{document}
` il cui risultato è:
[attachment=976]ScreenShot2014-04-08at8.25.02AM.png[/attachment]
Ciao
Claudio

Attachments:
You must be logged in to view attached files.

Go to top