The following MWE results in the Matrix shown in the picture. I would like the braces of the cos- and sin-functions in the first column not to touch each other. How can I achieve that?

\documentclass{scrreprt}
\usepackage{amsmath}
\usepackage{array}
\begin{document
\begin{align}
^{V}\boldsymbol{T}_{L}=
\begin{pmatrix}
cos\left(\frac{\pi\delta_i}{180}\right) & -sin\left(\frac{\pi\delta_i}{180}\right) & 0 \\
sin\right(\frac{\pi\delta_i}{180}\left) & cos\left(\frac{\pi\delta_i}{180}\right) & 0 \\
0 & 0 & 1
\end{pmatrix}
\end{align}
\end{document}


... \\[3pt]. be sure not to leave any space before the[3pt], or it will get printed instead of being interpreted as a space. (amsmathchecks that.) – barbara beeton Oct 30 '15 at 21:58