The following is a minimal working example for what I'm trying to achieve. I need to create a figure that looks like an U, that is, a capital U. However the junction between each of the straight lines and the arc is "sloppy". Is there a way to improve that?
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[very thick,blue] (0,10) -- (0,0);
\draw[very thick, blue] (0,0) arc (-180:0:3);
\draw[very thick, blue] (6,0) -- (6,10);
\end{tikzpicture}
\end{document}
