topology-triangle-to-line.tex 740 B

123456789101112131415161718192021222324
  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 (2.5,0) {};
  5. \node (c)[point] at (2,1) {};
  6. \begin{scope}[xshift=4.5cm, yshift=0.5cm]
  7. \node (d)[point] at (0,0) {};
  8. \node (e)[point] at (2,0) {};
  9. \end{scope}
  10. \begin{scope}[xshift=1.5cm,yshift=0.6cm,rotate=-55]
  11. \draw[->] (0,-0.1) -- (0.4,-0.1);
  12. \draw[->] (0, 0.0) -- (0.5, 0.0);
  13. \draw[->] (0, 0.1) -- (0.6, 0.1);
  14. \end{scope}
  15. \draw (a.center) -- (b.center) -- (c.center) -- cycle;
  16. \draw (d.center) -- (e.center);
  17. \draw[thick,->] (3,0.5) -- node[above] {$\varphi$} (4,0.5);
  18. \end{tikzpicture}