How can I draw a smooth, "natural" looking blob with TikZ?
My approach
\begin{tikzpicture}
\draw [] (0,0)node[circle,draw,decorate,decoration={random steps,segment length=.3cm,amplitude=1cm},rounded corners=.1cm] {};
\end{tikzpicture}
fails because the ends of the circle are not connected. Using the path has corner=false flag does not help either. Is there a possibility of doing this at all?
\pgfmathsetseed{1}\draw plot [smooth cycle, samples=8,domain={1:8}] (\x*360/8+5*rnd:0.5cm+1cm*rnd) node at (0,0) {}from the second link works perfectly fine! – Maximus Birula Mar 06 '13 at 16:33hobbycan solve I think. See this http://tex.stackexchange.com/questions/54771/curve-through-a-sequence-of-points-with-metapost-and-tikz – percusse Mar 06 '13 at 16:53