I would like to make this tikz picture fancier.
First of all, is it possible to smooth the junction between the different parts of the graph, for istance between the half circle and the line?
Then, is it possible to color the part of the graph under the curve, i.e. between the curve and the x-axis? ONLY THIS SECOND PART WAS ALREADY ANSWERED IN A PREVIOUS QUESTION.
Here is my code until now:
\documentclass[a4paper]{article}
\usepackage[english]{babel}
\usepackage{tikz}
\usepackage[]{xcolor}
\begin{document}
\begin{tikzpicture}
%\draw [help lines] (-10,0) grid [step=3] (10,10);
\draw plot [domain=0:3] (\x, {(0.7*\x)^2});
\draw plot [domain=-3:0] (\x, {(0.7*\x)^2});
\draw (4,4.41) arc (0:180:0.5);
\draw (-3,4.41) arc (0:180:0.5);
\draw plot [domain=4:10] (\x, 4.41);
\draw plot [domain=-4:-10] (\x, 4.41);
\draw [->, line width=5pt] (0,-2) -- (0,7);
\draw [->, line width=5pt] (-10,0) -- (10,0);
\draw [inner color=blue!20, outer color= blue!50!black] (0,0.5) circle (0.5);
\end{tikzpicture}
\end{document}

