I would like to create a drawing on isometric drawing paper like the following:

N.B. Forget the drawing on top of the paper; it is just something I found in order to illustrate the type of paper I would like to have.
On the blank isometric paper, I would like to draw the following simple sketch of a house:

Update
Thanks to Herbert's answer, I created the following (which is the house from another angle):
\documentclass{article}
\usepackage{pstricks-add}
\begin{document}
\begin{figure}
\centering
\psset{linejoin = 2}
\SpecialCoor
\begin{pspicture*}(-0.5,-2.3)(10,8.5)
\pstVerb{gsave [0.8660254 0.5 0 1 0 -400] concat}
{\psset{linewidth = 0.3pt, linecolor = black!50}
\multido{\iA = 0+1}{25}{%
\psline(\iA,-4)(\iA,20)
\psline(!-5 \iA\space 10 sub)(!20 \iA\space 10 sub)
\rput(!0 \iA\space 15 sub){\psline(0,0)(!\iA\space abs dup add dup)}
}
}
\psset{linewidth = 2pt}
\pspolygon(8,2)(8,6)(11,9)(11,5)
\pspolygon(1,2)(1,6)(8,6)(8,2)
\pspolygon(1,6)(2.5,9.5)(9.5,9.5)(8,6)
\psline(11,9)(9.5,9.5)
\psset{linestyle = dashed}
\pspolygon(4,5)(4,9)(11,9)(11,5)
\pspolygon(1,6)(4,9)(4,5)(1,2)
\psline(4,9)(2.5,9.5)
\pstVerb{grestore}
\end{pspicture*}
\end{figure}
\end{document}



pstricksusingpst-solides3d. However, using isometric paper like the above would not work with true 3D objects, since the projection would not coincide with the 2D guidelines. So, either fake 3D (naturally, 2D) on isometric paper, or true 3D. That's what I'm thinking. – Werner May 14 '13 at 18:06:(The house itself should no be too difficult (I think). – Svend Tveskæg May 14 '13 at 18:08