I have a simple picture - three vectors, originating from the (0, 0) point.
\documentclass[a4paper,12pt,oneside,titlepage,makeidx]{article}
\usepackage[pdftex]{graphicx}
\usepackage{tikz}
\usetikzlibrary{positioning, decorations.pathreplacing, calc, matrix, shapes, arrows, decorations, decorations.text, fit}
\newcommand{\dimlabel}
{%
\begin{tikzpicture}%
\draw[-latex', line width = 1pt] (0, 0) -- (0, 1);%
\draw[-latex', line width = 1pt] (0, 0) -- (1, 0);%
\draw[-latex', line width = 1pt] (0, 0) -- (1, 1);%
\end{tikzpicture}%
}%
\begin{document}
\begin{tikzpicture}
\node (S){\dimlabel};
\end{tikzpicture}
\end{document}
I use MikTeX 2.9 under Windows with pdfLaTeX.
The problem is that, if you run this simple example, and then open file in, say, Adobe Reader, and zoom the page really close, like 1200%, you will see that vectors, which form right angle have small gap in the point of origin.
The picture explains my point better. How can I avoid this effect? 


line cap=rectto the orthogonal paths. – Jake Mar 22 at 15:49