
TeX Code
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\coordinate (A) at (0, 0);
\coordinate (B) at (2, 3);
\node[draw,minimum width=10mm] at (A) {};
\node[draw,minimum width=10mm] at (B) {};
\end{tikzpicture}
\end{document}
How such path can be drawn using Tikz?
