Latex 如何在右边而不是下面画另一个圆?

Latex 如何在右边而不是下面画另一个圆?,latex,Latex,我有这个 \documentclass{article} \usepackage[utf8]{inputenc} \usepackage{tikz} \begin{document} \tikzset{ mycirc/.pic={ \foreach \w in {0,0.5} { \draw (0,\w) circle (0.5cm); } } } \begin{tikzpicture} \pic at (2,2) {

我有这个

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}

\begin{document}

\tikzset{
    mycirc/.pic={
        \foreach \w in {0,0.5} {
            \draw (0,\w) circle (0.5cm);
        }
    }
}

\begin{tikzpicture}
\pic at (2,2) {mycirc};
\end{tikzpicture}

\end{document}
代码绘制为相交的圆。我希望这些圆从右边相交,而不是从下面相交。我该怎么做?

如果你在这里问的话会更好
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}

\begin{document}

\tikzset{
    mycirc/.pic={
        \foreach \w in {0,0.5} {
            \draw (\w,0) circle (0.5cm);
        }
    }
}

\begin{tikzpicture}
\pic at (2,2) {mycirc};
\end{tikzpicture}

\end{document}