I'm having some issues with the latest version of the tkz-berge package: it seems to be ignoring node-distance specifications. If I compile this file (using example n. 39 from the tkz-berge documentation),
\documentclass{article}
\usepackage{tkz-berge}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
\SetVertexNoLabel
\GraphInit[vstyle=Shade]
\begin{scope}[rotate=-45]
\grComplete[RA=6]{4}
\end{scope}
{\tikzstyle{every node}=[node distance=1.64 cm]
\NOEA(a2){a5}}
\Edge(a2)(a5)
\Edge(a1)(a5)
\end{tikzpicture}
\begin{tikzpicture}
\SetVertexNoLabel
\GraphInit[vstyle=Shade]
\begin{scope}[rotate=-45]
\grComplete[RA=6]{4}
\end{scope}
{\tikzstyle{every node}=[node distance=5.64 cm]
\NOEA(a2){a5}}
\Edge(a2)(a5)
\Edge(a1)(a5)
\end{tikzpicture}
\end{document}
I get two identical graphs, in spite of the different node distance specifications:

Any thoughts?
