Thx for the reply.
Both Building up and Hacking down approaches are of great use for any programmer, and I do use both of them intensively (and i do try them before posting here). However, it doesn't help with the current problem:
Code: Select all
\documentclass[a4paper]{article}
\usepackage[english]{babel}
\usepackage{pst-3dplot}
\begin{document}
\begin{figure}[h]
\begin{center}
\psset{xunit=4cm,yunit=4cm,Alpha=160,Beta=15}
\begin{pspicture}(0,-0.5)(1,1)
\pstThreeDCoor[xMin=0, xMax = 1.2, yMin = 0, yMax = 1.2, zMin = 0, zMax = 1.2,
IIIDticks = true, IIIDlabels = true, IIIDzTicksPlane=yz, IIIDzticksep=-1.2,
IIIDxTicksPlane=xy, IIIDxticksep=-0.01, IIIDyTicksPlane=yz, IIIDyticksep=0.2, Dx=1.25, Dy=-0.25, Dz=-1.25,
nameX = $X$, nameY = $Y$, nameZ = $Z$]
% IIIDticksize = 0.5, linewidth = 0.02,
%grids:
\pstThreeDPlaneGrid[xsubticks=2,ysubticks=2,planeGrid=yz,linecolor=gray,linewidth=.5pt,linestyle=dashed](0,0)(1,1)
\pstThreeDPlaneGrid[xsubticks=2,ysubticks=2,planeGrid=xz,linecolor=gray,linewidth=.5pt,linestyle=dashed](0,0)(1,1)
\pstThreeDPlaneGrid[xsubticks=2,ysubticks=2,planeGrid=xy,linecolor=gray,linewidth=.5pt,linestyle=dashed](0,0)(1,1)
\pstThreeDPlaneGrid[xsubticks=2,ysubticks=2,planeGrid=yz,linecolor=gray,linewidth=.5pt,linestyle=dashed,planeGridOffset=4](0,0)(1,1)
\pstThreeDPlaneGrid[xsubticks=2,ysubticks=2,planeGrid=xz,linecolor=gray,linewidth=.5pt,linestyle=dashed,planeGridOffset=4](0,0)(1,1)
\pstThreeDPlaneGrid[xsubticks=2,ysubticks=2,planeGrid=xy,linecolor=gray,linewidth=.5pt,linestyle=dashed,planeGridOffset=4](0,0)(1,1)
\pstThreeDPlaneGrid[xsubticks=2,ysubticks=2,planeGrid=yz,linecolor=gray,linewidth=.5pt,linestyle=dashed,planeGridOffset=2](0,0)(1,1)
\pstThreeDPlaneGrid[xsubticks=2,ysubticks=2,planeGrid=xz,linecolor=gray,linewidth=.5pt,linestyle=dashed,planeGridOffset=2](0,0)(1,1)
%Plot the Nodes:
\pstThreeDDot[dotscale=1.2](1,0,0)
\pstThreeDDot[dotscale=1.2](0,1,0)
\pstThreeDDot[dotscale=1.2](0,0,1)
\pstThreeDDot[dotscale=1.2](0,0,0)
\pstThreeDDot[dotscale=1.2](1,1,1)
\pstThreeDDot[dotscale=1.2](1,1,0)
\pstThreeDDot[dotscale=1.2](0,1,1)
\pstThreeDDot[dotscale=1.2](1,0,1)
%Additional nodes:
\pstThreeDDot[dotscale=1.2](0.5,0,0)
\pstThreeDDot[dotscale=1.2](0,0.5,0)
\pstThreeDDot[dotscale=1.2](0,0,0.5)
\pstThreeDDot[dotscale=1.2](0.5,0.5,0)
\pstThreeDDot[dotscale=1.2](0,0.5,0.5)
\pstThreeDDot[dotscale=1.2](0.5,0,0.5)
\pstThreeDDot[dotscale=1.2](0.5,1,1)
\pstThreeDDot[dotscale=1.2](1,0.5,1)
\pstThreeDDot[dotscale=1.2](1,1,0.5)
\pstThreeDDot[dotscale=1.2](0.5,0.5,1)
\pstThreeDDot[dotscale=1.2](1,0.5,0.5)
\pstThreeDDot[dotscale=1.2](0.5,1,0.5)
\pstThreeDDot[dotscale=1.2](0.5,1,0)
\pstThreeDDot[dotscale=1.2](1,0.5,0)
\pstThreeDDot[dotscale=1.2](1,0,0.5)
\pstThreeDDot[dotscale=1.2](0.5,0,1)
\pstThreeDDot[dotscale=1.2](0,0.5,1)
\pstThreeDDot[dotscale=1.2](0,1,0.5)
\pstThreeDDot[dotscale=1.2](0.5,0.5,0.5)
\end{pspicture}
\end{center}
\end{figure}
\end{document}