Eine einfache Möglichkeit wäre:
\documentclass[margin=5pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\foreach \w in {30,150,270}
\path
[draw,help lines]
(0,0)--(\w:2)coordinate(p\w);
\draw[distance=1cm](p270)
to[out=180,in=120](p30)
to[out=300,in=240](p150)
to[out=60,in=0](p270)
;
\end{tikzpicture}
\end{document}
![alt text][1]
bzw. mit einer `foreach` Schleife und ohne die Striche:
\documentclass[margin=5pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[distance=1cm](270:2) foreach \w in {30,150,270}{
to[out={\w+150},in={\w+90}](\w:2)
};
\end{tikzpicture}
\end{document}
![alt text][2]
----------
Oder etwas aufwändiger, dafür mit mehr Einstellmöglichkeiten:
\documentclass[margin=5pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\newcommand\abstand{.3cm}
\foreach \w in {30,150,270}
\draw[help lines](0,0)--(\w:2)coordinate(p\w);
\path
[draw,help lines]
(0,0)--(\w:2)coordinate(p\w);
\foreach \w in {90,210,330}
\draw[help lines,dotted](0,0)--(\w:.3)coordinate(p\w);
\draw[distance=.8cm](p270)
\path
[draw,help lines,dotted]
(0,0)--(\w:.3)coordinate(p\w);
\draw(p270)
to[out max distance=\abstand,out=180,in=240](p330)
to[out=60,in=120,in max distance=\abstand](p30)
to[out max distance=\abstand,out=300,in=0](p90)
to[out=180,in=240,in max distance=\abstand](p150)
to[out max distance=\abstand,out=60,in=120](p210)
to[out=300,in=0,in max distance=\abstand](p270)
;
\end{tikzpicture}
\end{document}
![alt text][2]
text][3]
und wieder kürzer mit `foreach` und ohne die Striche:
\documentclass[margin=5pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\newcommand\abstand{.3cm}
\draw(270:2) foreach \w in {30,150,270}{
to[out max distance=\abstand,out={\w+150},in={\w-150}]({\w-60}:.3)
to[out={\w+30},in={\w+90},in max distance=\abstand](\w:2)
};
\end{tikzpicture}
\end{document}
![alt text][4]
[1]: http://texwelt.de/wissen/upfiles/tw_loop1.png
http://texwelt.de/wissen/upfiles/tw_loop1_1.png
[2]: http://texwelt.de/wissen/upfiles/tw_loop2.pnghttp://texwelt.de/wissen/upfiles/tw_loop3.png
[3]: http://texwelt.de/wissen/upfiles/tw_loop2_1.png
[4]: http://texwelt.de/wissen/upfiles/tw_loop4.png