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

\end{tikzpicture}

\end{document}