Advertisement
wilk_maciej

4_7

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