ich habe Schwierigkeiten ein Koordinatensystem an einem bestimmten Punkt einzuzeichnen. Ich bekomme es nicht hin und wäre über Hilfe sehr dankbar. Das ist mein bisheriger code:
\begin{figure}
\centering
\usetikzlibrary {3d}
\usetikzlibrary{svg.path}
\begin{tikzpicture}[scale = 7]
\begin{scope}[
plane origin={(0,0,0)},
plane x={(0,0,1)},
plane y={(1,0,0.5)},
canvas is plane,]
\draw[very thick] (1,0,0) arc (0:180:1cm);
\draw[dashed] (1,0,0) -- (-1,0,0);
\draw[thick, -stealth, blue!60!green] (0,0,0) -- (60:1cm) node[midway, anchor =south west]{$\boldsymbol{r}(s)$};
\draw[thick, -stealth, blue!60!green] (0.3,0,0) arc (0:60:0.3cm) node[below, midway]{$\varphi = \frac{s}{R}$};
\draw[thick, -stealth, blue!60!green] (1.04,0,0) arc (0:59.5:1.04cm) node[midway, below]{$s$};
\end{scope}
\begin{scope}[plane origin={(0,0,0)},
plane x={(0,0,1)},
plane y={(0,1,0)},
canvas is plane,]
\draw[thick, red, stealth-] (1.05,0,0) arc (0: 200: 0.1cm) node[above, midway]{$\theta_\mathrm{entry}$};
\draw[thick, red, -stealth] (-0.95,0,0) arc (0:200:0.1cm) node[above, midway]{$\theta_\mathrm{exit}$};
\end{scope}
\end{tikzpicture}
\caption{Caption}
\label{fig:enter-label}
\end{figure}Wäre toll wenn jemand einen Rat parat hätte
