rectangle-2.1.tex 509 B

12345678910111213141516
  1. \documentclass[varwidth=true, border=2pt]{standalone}
  2. \usepackage{tkz-euclide}
  3. \begin{document}
  4. \usetkzobj{all}
  5. \begin{tikzpicture}
  6. \tkzSetUpPoint[shape=circle,size=10,color=black,fill=black]
  7. \tkzSetUpLine[line width=1]
  8. \tkzDefPoints{0/0/A, 4/0/B, 4/2/C, 0/2/D, 3/2/E, 4/1/F, 1/0/G, 1/-1/H}
  9. \tkzDrawPolygon[fill=black!20](A,B,C,D)
  10. \tkzDrawPolygon[orange,fill=orange!20](E,C,F)
  11. \tkzDrawPolygon[orange,fill=orange!20](A,G,H)
  12. \tkzDrawPoints(A,B,C,D)
  13. \end{tikzpicture}
  14. \end{document}