I am trying to remove a line (from an ellipse) when it crosses into the circle, but cant seem to get it to work:(
\begin{tikzpicture}
\shade[ball color = gray!100, opacity = 0.4] (0,0) circle (2cm);
\draw (0,0) circle (2cm);
\draw (-2,0) arc (180:360:2 and 0.6);
\draw[dashed] (2,0) arc (0:180:2 and 0.6);
\fill[fill=black] (0,0) circle (1pt);
\draw[dashed] (0,0 ) -- node[above]{$r$} (2,0);
\def \firstellipse {(-1.5,0) ellipse (2 and 4)}
\draw[dashed] \firstellipse
\end{tikzpicture}
So to clarify, i want to remove the parts of the ellipsis that is within the borders of the circle!

