Guest User

Untitled

a guest
Feb 16th, 2020
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. \documentclass{article}
  2. \usepackage{tikz}
  3.  
  4. \begin{document}
  5. \begin{center}
  6. \begin{tikzpicture}[line width=0.5pt]
  7. \filldraw [fill=white] (0,0) circle [radius=3cm]
  8. \foreach \i in {0,30,...,360} {--(\i:2.8) node{$\bullet$}}
  9. ;
  10. \foreach \angle [count=\xi] in {60,30,...,-270}
  11. {\draw[line width=1pt] (\angle:2.8cm) -- (\angle:3cm);
  12. \node[font=\large] at (\angle:2.2cm) {\xi};}
  13. \foreach \angle in {0,90,180,270};
  14. \foreach \angle in {60,30,...,-270}
  15. {\draw[fill=black] (\angle:2.8cm) circle (0.1pt);
  16. }
  17. \end{tikzpicture}
  18. \end{center}
  19. \end{document}
Add Comment
Please, Sign In to add comment