Consider the following simplified code.
\documentclass[pstricks,border=2cm]{standalone}
\usepackage{pst-eucl}
\psset{saveNodeCoors}
%\def\xy#1{!\psGetNodeCenter{#1} #1.x #1.y}% cannot be reflected!
\def\xy#1{!N-#1.x N-#1.y}
\begin{document}
\begin{pspicture}[showgrid](-3,-1)(3,3)
\pstGeonode
(2,0){A}
(2,2){B}
\nodexn{.25(A)+.25(B)+(0,2.5)}{C'}
\pstGeonode(C'){C}
\def\common{\psline(\xy{A})(\xy{B})(\xy{C})}%
\pscustom
{
\common
\reversepath
\scale{-1 1}
\common
\closepath
}
\end{pspicture}
\end{document}

Why can't the abscissa and ordinate obtained from \psGetNodeCenter be reflected?
\scale{-1 1}or\psset{xunit=-1}, I think. – Werner Dec 29 '13 at 20:34\nodexn. – A.Ellett Dec 29 '13 at 23:10\nodexnor report it as a bug. – A.Ellett Dec 29 '13 at 23:12\pscustomand I was still getting strange values. I boiled my examples down to just loadingpstricksandpst-node. I did not loadpst-eucl. Performance differed if I usedarticledocument class. If I usedstandaloneI got different results depending on howborderwas set in the class options. – A.Ellett Dec 30 '13 at 00:52saveNodeCoorsand\psGetNodeCenter. – Christoph Mar 03 '14 at 23:53