pst-3dplot 错误:变换矩阵不可逆

pst-3dplot 错误:变换矩阵不可逆

我正在尝试重现 pst-3dplot 用户手册第 26 页上的示例 1。它应该将标签“xy 平面”旋转到 3D 坐标系中。

我收到的只是一个警告:

** WARNING ** Transformation matrix not invertible.
** WARNING ** --- M = [-154.772 0 0 0 6447.73 -40.3858]

并且没有旋转。以下是 MWE:

\documentclass{standalone}
\usepackage{pst-all}
\usepackage{pst-3dplot}
\begin{document}
\begin{pspicture}(-4,-4)(3,4)
\psset{Alpha=30}
\pstThreeDCoor[xMin=-4,yMin=-4,zMin=-4]
\pstPlanePut[plane=xy](0,0,-3){\fbox{\Huge\red xy plane}}
%\pstPlanePut[plane=xy](0,0,0){\fbox{\Huge\red xy plane}}
%\pstPlanePut[plane=xy](0,0,3){\fbox{\Huge\red xy plane}}
\end{pspicture}
\end{document}

相关内容