topology-graph-tetraeder-area.tex 703 B

12345678910111213141516
  1. \begin{tikzpicture}
  2. \tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
  3. \node (z)[point] at (0,0) {};
  4. \node (a)[point] at (90:1cm) {};
  5. \node (b)[point] at (210:1cm) {};
  6. \node (c)[point] at (330:1cm) {};
  7. \path (z.center) edge (a.center);
  8. \path (z.center) edge (b.center);
  9. \path (z.center) edge (c.center);
  10. \draw (a.center) -- (b.center) -- (c.center) -- cycle;
  11. \draw[pattern=north west lines] (a.center) -- (b.center) -- (z.center) --cycle;
  12. \draw[pattern=dots] (b.center) -- (c.center) -- (z.center) --cycle;
  13. \draw[pattern=crosshatch] (a.center) -- (c.center) -- (z.center) --cycle;
  14. \end{tikzpicture}