Ian Jauslin
summaryrefslogtreecommitdiff
blob: 91fe7c3c95ead32573109ac3161c51919aabb4d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
\documentclass{standalone}
\usepackage{tikz}

\begin{document}
\hfil\begin{tikzpicture}

\draw(-1,0)--++(4,0)--++(0,4)--++(-4,0)--cycle;

\draw[line width=4pt](0,0)..controls(0,2)and(1,2)..(1,0);
\draw[line width=4pt](1,4)..controls(1,2)and(2,2)..(2,4);
\draw[line width=4pt](2,0)..controls(2,2)and(0,2)..(0,4);

\end{tikzpicture}

\end{document}