pst-3dplot 和绘制圆柱体

pst-3dplot 和绘制圆柱体

\psCylinder我正在画一个圆柱体pst-3dplot,如手册中的 MWE 所示:

\documentclass{article}
\usepackage{pst-3dplot}

\begin{document}

\begin{pspicture}(-3,-2)(3,7)
\psset{Beta=10}
\pstThreeDCoor[zMax=7]
\psCylinder[increment=5]{2}{5}
\end{pspicture}


\end{document}

z垂直指向 - 我怎样才能使它水平?

答案1

你想要这样的东西吗?

\documentclass{article}
\usepackage{pst-3dplot}
\begin{document}

\psset{Alpha=0,Beta=90}
\begin{pspicture}(-3,-2)(3,7)
\pstThreeDCoor[zMax=7]
\psCylinder[RotX=90,RotY=45,increment=5]{2}{5}
\end{pspicture}

\end{document}

enter image description here

相关内容