The following MWE is the simplified version of the real scenario. I want to simplify (!\psGetNodeCenter{A}\psGetNodeCenter{B} A.x B.x add A.y B.y add) to (!A B AddNode). Is it possible?
\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pstricks-add}
\pstVerb
{
% convert nodes A B to a new node C where C.x=A.x+B.x and C.y=A.y+B.y
/AddNode {} bind def
}
\begin{document}
\begin{pspicture}[showgrid=top](6,6)
\pnode(0,3){A}
\pnode(4,0){B}
\pnode(!\psGetNodeCenter{A}\psGetNodeCenter{B} A.x B.x add A.y B.y add){C}
%\pnode(!A B AddNode){C}
\psline{->}(A)(B)(C)
\end{pspicture}
\end{document}
