Consider the following TikZ drawing:

Why do the lines not go "all the way"? And why does that line appear below what is supposed to look like a water tank?
\documentclass{memoir}
\usepackage{tikz}
\usetikzlibrary{decorations.pathmorphing}
\begin{document}
\def\balloonheight{1.5}
\def\ballooonwidth{1}
\def\vwidth{0.3}
\def\vheight{3}
\def\vpos{-3}
\centering
\begin{tikzpicture}
\tikzstyle{balloon}=[ball color=red];
\shade[balloon] ellipse (1 and 1.5);
\coordinate (bottom) at (0,-1.5);
\coordinate (vtop) at (0,\vpos);
\coordinate (vbottom) at (0,{\vpos - \vheight} );
\coordinate (vtopright) at (\vwidth, -3 );
\coordinate (vtopleft) at (-\vwidth, -3 );
\draw[rounded corners=8pt, thick,black] (vtopright) |- (vbottom) -| (vtopleft);
\draw[fill=blue!50!white] decorate [blue,decoration={snake}] {(vtopleft)++(0,-0.5) -- ++(2*\vwidth, 0 )} [rounded corners=8pt] |- (vbottom) -| (vtopleft)++(0,-0.5);
\draw[orange] (bottom) -- coordinate[midway] (ropemid) (vtop) -- ++(0,-1);
\coordinate (current) at (4,-1.5);
\path (current) -- ++(0,0.3) node (current+) {};
\path (current) -- ++(0,-0.3) node (current-) {};
\draw[thick] (current+) -- +(-0.5,0) -- ++(0.5,0);
\draw[thick] (current-) -- +(-0.2,0) -- ++(0.2,0);
\path (vbottom) -- ++(0,-0.5) node (belowvbottom) {};
\path (vtopleft) -- ++(0,-1.5) node (+entrance) {};
\path (vtopright) -- ++(0,-1.5) node (-entrance) {};
\draw[rounded corners=8pt,thick] (current+) |- ++(1,1) |- (belowvbottom) -- ++(-1,0) |- (+entrance);
\draw[rounded corners=8pt, thick] (current-) |- (-entrance);
\draw[thick,rounded corners=8pt] (ropemid) -- ++(2,0)
node[fill=white, draw, rectangle,rounded corners,align=center] (pico) {PicoScope} -| (current-);
\end{tikzpicture}
\end{document}

rounded cornersvalue is too big. – Gonzalo Medina Sep 19 '13 at 16:46nodefor anything but nodes. Usecoordinates instead. – nickpapior Sep 19 '13 at 16:48current+, has non zeroinner sep, usenode[coordinate] (current+) {}instead. – Torbjørn T. Sep 19 '13 at 16:49coordinate (current+);– nickpapior Sep 19 '13 at 16:49