I am trying to have 2 thin lines and 1 thick line join each other in the middle, with a smooth transition from the thin lines to the thick one. Currently, this looks like this:
Is there a way to have the thin lines join into the thicker one more smoothly? For example, I am imagining the lines to enter at the top and at the bottom of the thicker line, effectively melding into each other.
Using this code:
\documentclass[tikz,border=0pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[-, ultra thick] (0,2) -- (1,2.5) -- (0,3);
\draw[-, line width=2mm] (1,2.5) to (2,2.5);
\end{tikzpicture}
\end{document}


