I'm having trouble with pstThreeDBox, because any rotation seems to mess up its hidden (dashed) lines, so it all looks weird.
So I had a go at psBox, which is supposed to have the form:
\psBox[Options](vector o){width}{depth}{height}
Unfortunately that's not what I'm getting, namely the height parameter gets completely ignored!? Here's a test code, I get three exactly same boxes, even though they hav three different values for the height?
Code: Select all
\documentclass{article}
\pagestyle{empty}
\usepackage{xkeyval}
\usepackage{pstricks, pst-3dplot}
\begin{document}
\begin{pspicture}(-3,-3)(3,3)
\pstThreeDCoor
\psBox(0,0,0){1}{2}{3}
\end{pspicture}
\begin{pspicture}(-3,-3)(3,3)
\pstThreeDCoor
\psBox(0,0,0){1}{2}{0.1}
\end{pspicture}
\begin{pspicture}(-3,-3)(3,3)
\pstThreeDCoor
\psBox(0,0,0){1}{2}{0}
\end{pspicture}
\end{document}
Maja