topology-spiral.tex 368 B

12345678910111213
  1. % Thanks to Jake: http://tex.stackexchange.com/a/142815/5645
  2. \documentclass[border=5pt]{standalone}
  3. \usepackage{tikz}
  4. \usetikzlibrary{arrows}
  5. \begin{document}
  6. \begin{tikzpicture}
  7. \draw [red] (0,0) circle [radius=1];
  8. \draw [domain=1:18.8,variable=\t,smooth,samples=200,->,>=stealth']
  9. plot ({\t r}: {1+2*exp(-0.1*\t)});
  10. \end{tikzpicture}
  11. \end{document}