I'm curious by the two tikzpictures below behave differently.
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node[circle,draw,inner sep=2pt] (t1) at (0,0) {};
\node[circle,draw,inner sep=2pt] (t2) at (1,0.5) {};
\node[circle,draw,inner sep=2pt] (t3) at (3,4) {};
\draw[color=red,line width=4pt] (t1) -- (t2) -- (t3) -- cycle;
\end{tikzpicture}
\hspace*{\fill}
versus
\hspace*{\fill}
\begin{tikzpicture}
\draw[color=blue,line width=4pt] (0,0) -- (1,0.5) -- (3,4) -- cycle;
\end{tikzpicture}
\end{document}

cyclemakes sense for points and coordinates but not onnodes. Addcoordinateto the options ofnodes with noinner sepand they are same. – Dec 16 '13 at 23:53-- cycleis the same as in\path (<some coordinate>) -- cycle. You can either usecoordinates instead of nodes, add(t1)instead ofcycleor use.centerwith every node depending on what you want to do. The same problem arises if you want tofillthat triangle which corners are the nodes. It won’t work because you only have two simple lines. – Qrrbrbirlbel Dec 17 '13 at 00:00