Skip to content

Instantly share code, notes, and snippets.

@VincentTam
Last active January 31, 2016 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VincentTam/96b4aebd1dd26bb95164 to your computer and use it in GitHub Desktop.
Save VincentTam/96b4aebd1dd26bb95164 to your computer and use it in GitHub Desktop.
\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}
\draw [fill] (0,0) circle [radius = 0.025];
\node [below] at (0,0) {$x$};
\draw (0,0) circle (1);
\draw (0,0) -- (120:1) node[pos=0.5,above] {$r$};
\draw [fill] (2,2) circle [radius = 0.025];
\node [below] at (2,2) {$y$};
\draw (2,2) circle (0.7);
\draw (2,2) -- ++(120:0.7) node[pos=0.5,above] {$\varepsilon$};
\draw (0,0) -- (2,2);
\draw [fill] (2.3,2.3) circle [radius = 0.025];
\node [below] at (2.3,2.3) {$z$};
\end{tikzpicture}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment