Code: Select all
\documentclass{minimal}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (-1.9,.15) .. controls (-1.3,.25-0.3) and (1.3,.55) .. (1,.25);
\draw[fill=yellow] (-1,-1) rectangle (1,5);
\draw (-1.9,4.15) .. controls (-1.3,4.25-0.3) and (1.3,4.55) .. (1,4.25);
\foreach \y in {.25,.3,...,4.25}
\draw (-1,\y) .. controls (-1.3,\y-0.3) and (1.3,\y+.3) .. (1,\y);
\end{tikzpicture}
\end{document}
Can anyone give me some pointers?