Is it possible to align the dash strokes from two paths which are on top of each other?
In the figure below, the section of the path directly underneath node c has a slightly denser dash length due to the two paths on top of each other. Is there a way to avoid this please?
\documentclass[border=1cm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node[draw] at (-1,-1) (a) {a} ;
\node[draw] at (0,-1) (b) {b} ;
\node[draw, anchor=south] at (1,0) (c) {c} ;
\draw[dashed, ->] (c.south) |- (b.east) ;
\draw[dashed, <-] (a.south) -- +(270:3mm) -| (c.south);
\end{tikzpicture}
\end{document}
If I increase the vertical adjustment from node a to +(270:10mm) this looks better, but of course the adjustment is to large.


