I'm actually using PSTricks for plotting 3 grids in a 3D graph, however, it seems the vertical position of layers (the grids) is not ordered (the layer above is over the bottom layer) and it looks strange when I plot the whole.
My code is:
Code: Select all
\begin{center}
\def\gridG{\psgrid[gridlabels=7pt, subgriddiv=0,gridcolor=darkgray](0,0)(10, 10)}
\def\gridB{\psgrid[gridlabels=0pt, subgriddiv=0,gridcolor=gray](0,0)(10, 10)}
\def\gridZ{\psgrid[gridlabels=0pt, subgriddiv=0,gridcolor=lightgray](0,0)(10, 10)}
\psset{xunit=0.5cm,yunit=0.5cm}
\begin{pspicture}(0,-2)(11,11)
\ThreeDput[normal=0 0 1](0,0,8){\gridG}
\ThreeDput[normal=0 0 1](0,0,5){\gridB}
\ThreeDput[normal=0 0 1](0,0,2){\gridZ}
\end{pspicture}
\end{center}
Code: Select all
\ThreeDput[normal=0 0 1](0,0,8){\rput[b]{\gridG}}
Thanks in advance,
GrassH