3D PGFlots 未正确构建

3D PGFlots 未正确构建

我尝试运行 PGFPlots 图库的 3D 示例http://pgfplots.sourceforge.net/gallery.html但结果并不如我所料。

我的代码

\documentclass{standalone} %example 25

\usepackage{pgfplots}
\pgfplotsset{compat=newest}

\pagestyle{empty}

\usepgfplotslibrary{patchplots}

\begin{document}
\begin{tikzpicture}
    \begin{axis}
    \addplot3[patch,patch refines=3,
        shader=faceted interp,
        patch type=biquadratic] 
    table[z expr=x^2-y^2]
    {
         x  y
        -2 -2
         2 -2
         2  2
        -2  2
         0 -2
         2  0
         0  2
        -2  0
         0  0
    };
    \end{axis}
\end{tikzpicture}
\end{document}

这是预期的图像:

exmample 25

这是我的结果:

my example 25

我究竟做错了什么?

相关内容