Any ideas about how to draw this with TikZ? I tried several things, but nothing satisfactory. What I tried was to doing in the simplest way, that is,
\begin{tikzpicture}
\draw (point) arc (angle contitions);
\end{tikzpicture}
What I need is something like the image:
I tried to use this code also (from Use tikz (for example) to draw pictures in hyperbolic geometry)
\begin{document}
\newcommand{\hgline}[2]{
\pgfmathsetmacro{\thetaone}{#1}
\pgfmathsetmacro{\thetatwo}{#2}
\pgfmathsetmacro{\theta}{(\thetaone+\thetatwo)/2}
\pgfmathsetmacro{\phi}{abs(\thetaone-\thetatwo)/2}
\pgfmathsetmacro{\close}{less(abs(\phi-90),0.0001)}
\ifdim \close pt = 1pt
\draw[blue] (\theta+180:1) -- (\theta:1);
\else
\pgfmathsetmacro{\R}{tan(\phi)}
\pgfmathsetmacro{\distance}{sqrt(1+\R^2)}
\draw[blue] (\theta:\distance) circle (\R);
\fi
}
\begin{tikzpicture}
\draw (0,0) circle (1);
\clip (0,0) circle (1);
\hgline{30}{-30}
\hgline{180}{270}
\hgline{30}{120}
\hgline{0}{180}
\end{tikzpicture}
But this allow me to draw lines embedded on the disk, and when I try to remove the circle, the code is unuseful.
Thank you.



The first I tried was to use the most simple thing using \draw (point) arc (angle). However, I could not control the lines so I searched here:
https://tex.stackexchange.com/questions/16617/use-tikz-for-example-to-draw-pictures-in-hyperbolic-geometry
I tried everything they put, but their solutions were about drawing hyperbolic lines on the disk, and when I tried to remove the disk the code began to do strange things.
– Rub Feb 18 '19 at 16:58.