I am trying to make a mapping like this picture
I tried
\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{tikz-3dplot}
\begin{document}
\tdplotsetmaincoords{110}{70}
\begin{tikzpicture}[tdplot_main_coords ,declare function={a=6;b=2;h=1;
}]
\path
(0,0,0) coordinate (A)
(a,0,0) coordinate (B)
(a,b,0) coordinate (C)
(0,b,0) coordinate (D)
(0,0,h) coordinate (E)
(a,0,h) coordinate (F)
(a,b,h) coordinate (G)
(0,b,h) coordinate (H)
;
\draw (E)-- (F) -- (G) -- (H) --cycle (A) -- (E)--(H) -- (D) -- (C) -- (G) -- (H) (A) -- (D);
\end{tikzpicture}
\end{document}
How to create a mapping like the above figure?




