Ian Jauslin
summaryrefslogtreecommitdiff
blob: 27eb5c5fb2435bc82381939b5a6406bff255d417 (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](1,0)..controls(1,2)and(2,2)..(2,0);
\draw[line width=4pt](0,4)..controls(0,2)and(1,2)..(1,4);
\draw[line width=4pt](0,0)..controls(0,2)and(2,2)..(2,4);

\end{tikzpicture}

\end{document}