I'm trying to draw an angle between two lines.
I have this code so far, but i cant draw a angle. How do I do it? I'm using PGF/TikZ.
\begin{figure}
\begin{tikzpicture}
\begin{axis}[
ticks=none,
axis lines = middle,
axis line style={->},
ymin=-1.5, ymax=1.5,
xmin=-1.5, xmax=1.5,
axis equal]
\addplot[black, domain=0:0.7071] {x};
\draw[black] (axis cs:0,0) circle [radius=1];
\end{axis}
\end{tikzpicture}
\end{figure}
Thanks.



\tkzMarkAngleis very useful for this. – Claudio Fiandrino Jan 02 '14 at 20:03