I've tried to do a random, smooth ellipse in TikZ with decorations and I came up with something similar like this, but the endpoints don't match:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations}
\usetikzlibrary{decorations.pathmorphing}
\begin{document}
\begin{tikzpicture}[decoration={random steps,segment length=12.5mm,amplitude=6mm}]
\draw[decorate,rounded corners=4mm] (0,0) ellipse (1.3cm and 2cm);
\end{tikzpicture}
\end{document}

Repeating the construction several times suggests that the gap is a systematic error that doesn't come from the randomness:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations}
\usetikzlibrary{decorations.pathmorphing}
\begin{document}
\begin{tikzpicture}[decoration={random steps,segment length=12.5mm,amplitude=6mm}]
\foreach \i in {1,...,10} {\draw[decorate,rounded corners=4mm] (0,0) ellipse (1.3cm and 2cm);}
\end{tikzpicture}
\end{document}

What's the problem? How can I fix it?
