Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

33 lines
1.2KB

  1. %&tex
  2. \documentclass{standalone}
  3. \usepackage{tikz}
  4. \usepackage{siltex}
  5. \usetikzlibrary {arrows.meta,positioning}
  6. \usetikzlibrary{calc,patterns}
  7. \input{graphics/tics.tikz}
  8. \begin{document}
  9. \begin{tikzpicture}[>=Stealth, on grid, y=2.16cm, x=2.16cm]
  10. \draw(0,0) pic {whiteboard};
  11. \begin{scope}[shift={(2,2.8)}]
  12. \draw[fill=gray] (0,0) circle (0.2);
  13. \begin{scope}[rotate=-60, rounded corners]
  14. \draw[fill=gray!60](-0.075,-0.075) rectangle (1.5,0.075);
  15. \begin{scope}[shift={(0.8,0)}]
  16. \draw[<->] ({0.8*cos(20)},{0.8*sin(20)}) arc[start angle = 20, end angle= -20, radius = 0.8] node[midway, below right]{$\alpha$};
  17. \end{scope}
  18. \begin{scope}[shift={(1.44,0)}]
  19. \begin{scope}[rotate=-104]
  20. \draw[fill=gray!60](-0.075,-0.075) rectangle (1.5,0.075);
  21. \begin{scope}[shift={(0.8,0)}]
  22. \draw[<->] ({0.8*cos(20)},{0.8*sin(20)}) arc[start angle = 20, end angle= -20, radius = 0.8] node[midway, left]{$\beta$};
  23. \end{scope}
  24. \end{scope}
  25. \end{scope}
  26. \end{scope}
  27. \end{scope}
  28. \end{tikzpicture}
  29. \end{document}