topology-halfspace.tex 537 B

123456789101112131415161718
  1. \documentclass[varwidth=true, border=2pt]{standalone}
  2. \usepackage{tikz}
  3. \usetikzlibrary{patterns}
  4. \begin{document}
  5. \begin{tikzpicture}
  6. \draw [white,step=0.5cm, pattern=north east lines] (0,0) rectangle (2,1);
  7. \draw[very thick] (0,0) -- (2,0);
  8. \node at (2.4,0.5) {$\stackrel{\sim}{=}$};
  9. \begin{scope}[shift={(4,0)}]
  10. \draw[white,pattern=north east lines] ([shift={(180:1cm)}]-0.0,0) arc (180:0:1cm);
  11. \draw[very thick] (-1,0) -- (1,0);
  12. \end{scope}
  13. \end{tikzpicture}
  14. \end{document}