topology-graph-k-3-3.tex 310 B

1234567891011
  1. \begin{tikzpicture}
  2. \tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
  3. \foreach \x in {0,1,2}
  4. \foreach \y in {0,1,2}{
  5. \node (a)[point] at (\y,0) {};
  6. \node (b)[point] at (\x,1) {};
  7. \draw (a) -- (b);
  8. }
  9. \end{tikzpicture}