I have a custom command
\newcommand\windturbine[2][]{
\begin{scope}[shift={(#2)}]
\draw[#1] (0,0) ellipse (0.7cm and 0.1cm);
\draw[#1] (0.8,0) circle (0.1cm );
\draw[#1] (1.6,0) ellipse (0.7cm and 0.1cm);
\end{scope}
}
Lets draw two wind turbine
\begin{tikzpicture}
\windturbine[draw=black,fill=black, very thick]{0,0};
\windturbine[draw=black,fill=black, very thick]{0,7};
\end{tikzpicture}
I would like to rotate the first one with x degree and connect the two drawings with a line, how can I achieve that?