In the following tikz MWE I am using the fit library to draw a red box:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{fit}
\begin{document}
\begin{tikzpicture}
\node (a) {A};
\node [above right=of a] (b) {B};
\node [right=of a] (c) {C};
\node [draw=red, fit=(a) (b)] {};
\end{tikzpicture}
\end{document}
Unfortunately this fit box includes the C node. Is it possible with fit to draw a box around A and B with including C using either non vertical/horizontal lines or using several vertical/horizontal lines in a "stair" fashion to exclude C ?



fit, the area in which the fitted nodes are placed) is always rectangular. – Paul Gessler Feb 25 '15 at 13:37