Basically I want to draw a line from the tip of the z-axis vector to the tip of the red vector. I do not quite know how to do this. This is the code I have so far, I hope someone has an idea on how to work this:
\documentclass{standalone}
\begin{document}
\begin{blochsphere}[radius=1.5 cm,tilt=15,rotation=-30, opacity=0.3]
\drawBallGrid[style={opacity=0.1}]{30}{180}
\drawStatePolar[axisarrow = true, statewidth = 0.3]{x-Achse}{90}{90}
\drawStatePolar[axisarrow=true, statewidth = 0.3]{y-Achse}{90}{0}
\drawStatePolar[axisarrow = true, statewidth = 0.3]{z-Achse}{0}{0}
\node[left] at (x-Achse) {\fontsize{0.15cm}{1em} $x$};
\node[right] at (y-Achse) {\fontsize{0.15cm}{1em} $y$};
\node[left] at (z-Achse) {\fontsize{0.15cm}{1em} $z$};
\drawStatePolar[statecolor = red]{State}{12}{0}
\labelLatLon{up}{90}{0};
\labelLatLon{down}{-90}{90};
\node[above] at (up) {{ $\left|0\right>$ }};
\node[below] at (down) {{ $\left|1\right>$}};
\end{blochsphere}
\end{document}

