曲面图中面的边缘厚度

曲面图中面的边缘厚度

是否可以在曲面图中更改面边缘的绘制厚度PGFplots

例如,在最小工作示例中

\documentclass[margin=1cm]{standalone}
\usepackage{pgfplots}
\begin{document}
    \begin{tikzpicture}
        \begin{axis}
            \addplot3[surf,faceted color=black] {x+y};
        \end{axis}
    \end{tikzpicture}
\end{document}

,如何改变面部黑色边缘的绘制粗细?

在此处输入图片描述

答案1

也许我误解了这个问题?您可以使用以下line width选项:

在此处输入图片描述

代码:

\documentclass[margin=1cm]{standalone}
\usepackage{pgfplots}
\begin{document}
    \begin{tikzpicture}
        \begin{axis}
            \addplot3[surf,faceted color=black] {x+y};
        \end{axis}
    \end{tikzpicture}\qquad
    \begin{tikzpicture}
        \begin{axis}
            \addplot3[surf,faceted color=black,line width=0.01pt] {x+y};
        \end{axis}
    \end{tikzpicture}
\end{document}

相关内容