Advertisement
PaweU

lab4zad7

Apr 18th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.85 KB | None | 0 0
  1. \documentclass{standalone}
  2. \usepackage[T1]{fontenc}
  3. \usepackage[latin2]{inputenc}
  4. \usepackage[english]{babel}
  5. \usepackage{tikz}
  6. \usepackage{siunitx}
  7. \usetikzlibrary{calc,through,backgrounds,positioning,fit}
  8. \usetikzlibrary{shapes,arrows,shadows}
  9.  
  10. \begin{document}
  11.  
  12. \begin{tikzpicture}[scale=1,inner sep=0.4mm]
  13. \coordinate (O) at (0,0);
  14. \coordinate (A) at (-75:2cm);
  15. \coordinate (B) at (85:2cm);
  16.  
  17. \filldraw [green!60!white, draw=black, ultra thin]
  18. (O) -- (A) arc (-75:85:2cm) -- cycle;
  19. \draw (O) circle (2cm);
  20.  
  21. \node at (O) [left=2pt] {$O$};
  22. \node at (A) [left=6pt, above] {$A$};
  23. \node at (B) [left=6pt, below] {$B$};
  24. \node at (O) [right=2pt] {$\alpha = \ang{160}$};
  25.  
  26. \node at (O) [circle,fill=black!80!white] {};
  27. \node at (A) [circle,fill=black!80!white] {};
  28. \node at (B) [circle,fill=black!80!white] {};
  29.  
  30.  
  31. \end{tikzpicture}
  32.  
  33. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement