3d 表面的顏色和圖例

3d 表面的顏色和圖例

我正在嘗試使用以下方法繪製 3d 曲面pgfplots,這就是我到目前為止所做的:

\usepgfplotslibrary{patchplots}
\begin{tikzpicture}
\begin{axis}[%
width=12cm,height=12cm,
xlabel={$J_1$},
ylabel={$J_2$},
zlabel={$J_3$},
legend style={at={(-0.2,0.14)},anchor=north west,draw=black,fill=white,legend cell align=left},
label style={font=\scriptsize}, ticklabel style={font=\scriptsize}
]

\addplot3[patch,patch type=triangle quadr,opacity = 0.2,
    shader=faceted interp]
coordinates {
  (349.9671,  349.9671,  195.8676)
  (195.8676,  349.9671,  349.9671)
  (349.9671,  195.8676,  349.9671)
  (226.6197,  330.3199,  226.6197)
  (226.6197,  226.6197,  330.3199)
  (330.3199,  226.6197,  226.6197)};
% \addlegendentry{Pareto Front};

\end{axis}
\end{tikzpicture}

在此輸入影像描述

我需要它是單色的(但事實並非如此),我無法添加圖例,我想更改旋轉它的視角。有什麼建議嗎?謝謝。

答案1

  1. 您可以選擇一個合適的colormap。例如,colormap/gray載入顏色圖後pgfplotslibrary

  2. 您有view={<angle>}{<angle>}view/h=<angle>以及其他一些影響視角的命令。請參閱包文件(部分4.11.1 查看配置)。

  3. \addlegendentry和之間似乎存在不相容性patch type=triangle quadr。根據一個來自包作者的評論這似乎是個錯誤;他還建議增加area legend,fill=black劇情以獲得合適的替代品。

代碼:

\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{patchplots,colormaps}
\pgfplotsset{compat=1.9} 
\begin{document}

\begin{tikzpicture}
\begin{axis}[%
width=12cm,height=12cm,
xlabel={$J_1$},
ylabel={$J_2$},
zlabel={$J_3$},
legend style={
  at={(-0.2,0.14)},
  anchor=north west,
  draw=black,
  fill=white,
  legend cell align=left
  },
label style={font=\scriptsize},
ticklabel style={font=\scriptsize},
view={10}{10},
]

\addplot3[
  patch,
  patch type=triangle quadr,
  opacity = 0.5,
  shader=faceted interp,
  colormap/gray,
  area legend,fill=black
  ]
coordinates {
  (349.9671,  349.9671,  195.8676)
  (195.8676,  349.9671,  349.9671)
  (349.9671,  195.8676,  349.9671)
  (226.6197,  330.3199,  226.6197)
  (226.6197,  226.6197,  330.3199)
  (330.3199,  226.6197,  226.6197)};
  \addlegendentry{Pareto Front};
\end{axis}
\end{tikzpicture}

\end{document}

在 Acrobat Reader 上看到的輸出(某些檢視器(例如 Okular)可能會產生錯誤的結果,以小矩形取代連續陰影)

在此輸入影像描述

相關內容