I have a question about intersection segments in package pgfplots. I want to intersect circle (named mypath) with another circle and would like to draw the intersection segments L1,L2,L3 of the the mypath with the colours yellow,red,green respectively. but L2,L3 segments aren't computed as expected. Why?
\documentclass{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\usetikzlibrary{fillbetween}
\begin{document}
\begin{tikzpicture}
\path [name path=mypath] (0,0) circle (1);
\node[draw,circle,name path=node2] at ( 30:1 ) {2};
\draw[green,intersection segments={of=mypath and
node2,sequence={L3}}];
\draw[red,intersection segments={of=mypath and
node2,sequence={L2}}];
\draw[yellow,intersection segments={of=mypath and
node2,sequence={L1}}];
\end{tikzpicture}
\end{document}


