Code: Select all
\documentclass[border=10pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
%\draw [help lines, dotted,step=0.25] (0,0) grid(8,3);% help line grid
%\node [anchor=south west] at (-0.15,-0.2)%as template
%{\includegraphics[width=8cm]{space.jpg}};
\draw (0,0) -- (5.9,0) -- (7.9,2.5) -- (1.95,2.5) -- cycle;
\foreach \shift/\style in {
(0,0)/dashed,
(-0.1,0.4)/dashed,
(-0.2,0.8)/dashed,
(-0.05,0.2)/dotted,
(-0.15,0.6)/dotted} {
\draw [\style,shift={\shift}] (1.2,0) -- (6.5,1.68);}
\end{tikzpicture}
\end{document}