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

\end{tikzpicture}

\end{document}