\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}