hyperbolic-geometry-not-parallel.tex 729 B

123456789101112131415161718192021222324
  1. \documentclass[varwidth=true, border=10pt]{standalone}
  2. \usepackage{tkz-euclide}
  3. \usepackage{tikz}
  4. \usetikzlibrary{patterns}
  5. \begin{document}
  6. \usetkzobj{all}
  7. \begin{tikzpicture}
  8. \tkzSetUpPoint[shape=circle,size=3,color=black,fill=black]
  9. \tkzSetUpLine[line width=1]
  10. \tkzInit[xmax=6,ymax=5,xmin=-5,ymin=0]
  11. \tkzDefPoints{-2/0/A,3.5/0/B,-0.85/0/C,2/0/D,2/2/P}
  12. \tkzDefPoints{-1/0/X, -1/5/Y}
  13. \tkzDrawLine[add=0.1 and 0.1](X,Y)
  14. \tkzAxeXY
  15. \tkzDrawArc[R,line width=1pt,color=red](A,0.5 cm)(0,180)
  16. \tkzDrawArc[R,line width=1pt](B,2.5 cm)(0,180)
  17. \tkzDrawArc[R,line width=1pt](C,3.5 cm)(0,180)
  18. \tkzDrawArc[R,line width=1pt](D,2.0 cm)(0,180)
  19. \tkzDrawPoints(P)
  20. \end{tikzpicture}
  21. \end{document}