According to PSTricks manual, as shown in the screenshot below, there is an optional angle option.

Unfortunately, the example above does not show how to use angle option.
I have tried using angle but I always fail. The option does not affect anything.

\documentclass[border=12pt]{standalone}
\usepackage{pst-eucl,multido}
\begin{document}
\multido{\i=0+30}{3}{%
\begin{pspicture}[showgrid](6,6)
\pstGeonode(0,5){B}(3,3){A}
\pstLineAB[nodesepB=-3]{B}{A}
\pstCircleOA[Radius=\pstDistVal{1},linestyle=dashed]{A}{}
\uput{1.5}[90](A){angle=$\i^\circ$}
\psline[linecolor=blue]([offset=1,angle=\i]{B}A)% does not affect anything!
\end{pspicture}\hspace{5mm}}
\end{document}
How to use angle option when using ([angle=number]{node1} node2) notation?




