在 TikZ 中用网格线绘制 3D 流形

在 TikZ 中用网格线绘制 3D 流形

我想使用 TikZ 绘制一个任意的 3D 流形,例如这个,带有网格线和标记轴:

在此处输入图片描述

这里和其他地方有一些类似的帖子,但没有一个能够完全满足我的要求。

答案1

pgfplots提供这样的情节。

\documentclass[tikz,border=3mm]{standalone}
\usepackage{pgfplots} % package used to draw plots  
\pgfplotsset{compat=1.17}
\begin{document}
\begin{tikzpicture}
    \begin{axis}[trig format plots=rad]
        \addplot3 [surf,fill=white,domain=0:6,point meta=1] {(1+sin(x/2))*sin(x)*cos(y)};
    \end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容