Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. documentclass[border=5mm]{standalone}
  2. usepackage{pgfplots}
  3. pgfplotsset{compat=1.10,
  4. ticks=none}
  5. usepgfplotslibrary{fillbetween}
  6. usetikzlibrary{backgrounds,
  7. calc,
  8. patterns}
  9.  
  10. begin{document}
  11.  
  12. begin{tikzpicture}[scale=4, transform shape]
  13. tikzset{
  14. myc/.pic={
  15. draw[line width=2mm] (0, 0) -| (2, 1) -| (1, 2) -| (2, 3) -| cycle;
  16. }
  17. }
  18. path (0,0) pic[fill=green] {myc} (1,3) pic[fill=blue] {myc} (2,6) pic[fill=blue] {myc};
  19. end{tikzpicture}
  20.  
  21. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement