topology-graph-simple.tex 369 B

123456789
  1. \begin{tikzpicture}
  2. \tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
  3. \node (a)[point] at (0,0) {};
  4. \node (b)[point] at (1,0) {};
  5. \path (a.center) edge [bend left] (b.center);
  6. \path (a.center) edge (b.center);
  7. \path (a.center) edge [bend right] (b.center);
  8. \end{tikzpicture}