I have plotted 12 nodes in a circle with radius 2 and center (0,0) (I suppose). Now I want to plot it once more in the same figure but with centre (2,0), how could this be achieved? Many thanks for any help!
My current code:
\begin{figure}[h]
\centering
\begin{tikzpicture}
\foreach \a in {1,...,12}
{
\node[vertex] (u\a) at ({\a*30}:2){};
}
\end{tikzpicture}
\caption*{\footnotesize{Figure 3}}
\end{figure}
It looks like:

I have tried like ({\a*30}:2)+(2,0) but doesn't work.

\begin{scope}[xshift=2cm] ... code as before ... \end{scope}. – Pier Paolo Jun 18 '15 at 22:18\usetikzlibrary{calc}and then($ ({\a*30}:2) + (2,0) $). See also http://tex.stackexchange.com/questions/31830/problems-with-tikz-calculations – hpekristiansen Jun 19 '15 at 00:30