In the following MWE, there are some unpleasant gaps. I would like to produce a "smooth" line as drawn with the use of pswedge (which isn't working for the lower chart). How can I do that?
\documentclass[12pt]{article}
\usepackage{amssymb,amsmath}
\usepackage{xcolor}
\usepackage[T1]{fontenc}
\usepackage{pstricks,pst-node}
\begin{document}
\begin{pspicture}[showgrid=true](1,-2.5)(6,1.5)
\psset{algebraic=true}
\pswedge[linewidth=1.5pt](3.5,0.25){2cm}{0}{180}
\psline[linewidth=1.5pt](1.5,-0.25)(5.5,-0.25)
\psarc[linewidth=1.5pt](3.2,-0.25){1.7cm}{180}{330}
\psarc[linewidth=1.5pt](3.5,-0.25){2cm}{-30}{0}
\SpecialCoor
\rput(3.5,-0.25){\pnode(2cm;-30){A}}
\rput(3.2,-0.25){\pnode(1.7cm;-30){B}}
\psline[linewidth=1.5pt](A)(B)
\end{pspicture}
\end{document}


tikzthere is the optionline joint-- maybe there is something similar in ´pstricks´ or you switch to ´tikz´ (see http://tex.stackexchange.com/questions/21063 for example). – Dr. Manuel Kuehner Feb 21 '17 at 00:11