I am trying to draw a rough surface using TikZ. This question - Automatically generate graphics which shows light diffusion on a rough surface - tackles the same problem, and using this answer by percusse I've been able to generate this
However, I would like to achieve a diagram that looks more like this (Source: Contacting surfaces.jpg from https://commons.wikimedia.org)
How could I go about achieving a roughness profile which looks like this?
Code
\documentclass[tikz,margin=3.14mm]{standalone}
\usetikzlibrary{decorations.pathmorphing}
\begin{document}
\begin{tikzpicture}
\draw[fill=green!40!black!50!white]
{decorate[decoration={random steps,segment length=0.5mm,amplitude=1pt}] %Roughness is amplitude
{(0,0) -- ++(4,0)}} -- ++(0,-10mm) -- ++(-4cm,0) -- cycle;
\begin{scope}[yshift=0.1cm,yscale=-1]
\draw[fill=blue!40!black!50!white]
{decorate[decoration={random steps,segment length=0.5mm,amplitude=1pt}] %Roughness is amplitude
{(0,0) -- ++(4,0)}} -- ++(0,-10mm) -- ++(-4cm,0) -- cycle;
\end{scope}
\end{tikzpicture}
\end{document}


