\documentclass[pstricks,border=12pt,12pt]{standalone}
\usepackage{pst-solides3d}
\begin{document}
\begin{pspicture}[viewpoint=5 30 45 rtp2xyz,Decran=5](-6,-6)(6,6)
\psSolid[object=cylindrecreux,h=2,r=1,fillcolor=cyan,ngrid=30 30]
\axesIIID(1,1,1)(3,3,3)
\end{pspicture}
\end{document}
我必须设置什么选项才能从圆柱体中去除网格,使得圆柱体看起来干净、光滑且具有渐变颜色?
编辑:
当我设置时,linewidth=0
我得到了以下内容,但我不确定这linewidth=0
是推荐的解决方案。
答案1
\documentclass[pstricks,border=12pt,12pt]{standalone}
\usepackage{pst-solides3d}
\begin{document}
\begin{pspicture}[viewpoint=30 30 20 rtp2xyz,Decran=30,lightsrc=viewpoint](-6,-6)(6,6)
\psSolid[object=cylindrecreux,h=2,r=1,fillcolor=cyan,ngrid=20 20,
grid=false]
\axesIIID(1,1,2)(3,3,3)
\end{pspicture}
\end{document}