compiling the following example in newest MikTeX or TexLive results in strange problems: Have a look at the plot:

There are some missing parts and only the z-axis is drawn. Please try to help.
\documentclass{standalone}
\usepackage{tikz,tikz-3dplot}
\begin{document}
\tdplotsetmaincoords{70}{10}
\begin{tikzpicture}[scale=5,line join=bevel,tdplot_main_coords,fill opacity=.15]
\pgfsetlinewidth{.2pt}
\tdplotsetpolarplotrange{30}{100}{0}{360}
\tdplotsphericalsurfaceplot[parametricfill]%
{18}%
{36}%
{1}%
{black}%
{\tdplotphi+\tdplottheta+\tdplotr}%
{\draw[color=black,thick,->] (0,0,0) -- (1.3,0,0) node[right]{\(x\)};}
{\draw[color=black,thick,->] (0,0,0) -- (0,3.3,0) node[above right]{\(y\)};}
{\draw[color=black,thick,->] (0,0,0) -- (0,0,1.3) node[above]{\(z\)};};
\end{tikzpicture}
\end{document}
Any hints? Thanks in advance


pgf/tikz-3dplotup working fine again! – Bastian Ebeling Feb 28 '11 at 18:44