three-angles.tex 1005 B

12345678910111213141516171819202122
  1. \begin{tikzpicture}
  2. \tkzSetUpPoint[shape=circle,size=10,color=black,fill=black]
  3. \tkzSetUpLine[line width=1]
  4. \tkzDefPoints{0/0/P, 1/0/helperRight, 1/1/helperTopRight, -1/1/helperTopLeft, -1/0/helperLeft, -1/-0.3/helperBottomLeft}
  5. \tkzMarkAngle[arc=l,size=0.8cm,color=green,fill=green!20](helperRight,P,helperTopRight)
  6. \tkzMarkAngle[arc=ll,size=0.8cm,color=blue,fill=blue!20](helperTopRight,P,helperTopLeft)
  7. \tkzMarkAngle[arc=lll,size=0.8cm,color=red,fill=red!20](helperTopLeft,P,helperBottomLeft)
  8. \path[draw] ++(25:.4) node[rotate=0] {$\alpha$};
  9. \path[draw] ++(90:.4) node[rotate=0] {$\beta$};
  10. \path[draw] ++(160:.4) node[rotate=0] {$\gamma$};
  11. \tkzDrawLine[add=0 and 1.0](P, helperRight)
  12. \tkzDrawLine[add=0 and 0.3](P, helperTopRight)
  13. \tkzDrawLine[add=0 and 0.3](P, helperTopLeft)
  14. \tkzDrawLine[add=0 and 1.0](P, helperLeft)
  15. \tkzDrawLine[add=0 and 0.8](P, helperBottomLeft)
  16. \tkzDrawPoints(P)
  17. \tkzLabelPoint[below](P){$P$}
  18. \end{tikzpicture}