在 pgfplots 中获取特定的 3d 视图

在 pgfplots 中获取特定的 3d 视图

我正在尝试实现以下图表,以指示的透视图和轴线为中心: 在此处输入图片描述

我玩过好几个看法选项,但我就是无法重现该图。任何帮助都将不胜感激。以下是我目前所得到的:

\documentclass{article}
\usepackage{pgfplots}
\begin{document}
    \begin{tikzpicture}[>=latex,font=\footnotesize]
     \begin{axis}[view={45}{110},axis lines = center,colormap/greenyellow,xlabel={$x$},ylabel={$y$},zlabel={$z$}]
      \addplot3[surf,samples=40,domain=-4:4,y domain=-3:3]{-2*x+3*y+6};
     \end{axis}
    \end{tikzpicture}
\end{document}

相关内容