I would like to be able to direct an image from a fixed point in a pspicture to various locations in the picture individual specifying angles and radii from that point.
Consider the code (which I compile with xelatex)
\documentclass[12pt]{book} \usepackage{pstricks,psvectorian} \usepackage{xcolor,graphicx}
\begin{document} \thispagestyle{empty} \begin{pspicture}(-5,-5)(4,4)% \psframe[fillcolor=blue!65!red,fillstyle=solid](-5,-5)(5,12) \psframe[linecolor=blue!65!red](-5,-5)(5,12) \rput[tr]{-45}(1.75,1.75){\psvectorian[width=2.1cm,color=white]{63}} \rput(-2,2){\includegraphics[width=2em]{example-image-b}} \rput(-1,1){\includegraphics[width=2em]{example-image-a}} \end{pspicture}% \end{document} which produces
In the case of the MWE, I would like to fix the Cartesian point (-1,1) (which contains Image A) and project it to the point (-2,2) (which now contains Image B) by specifying the angle (-45 degree) and a radius of \sqrt{2}. If this can be done, then I can proceed to scatter Image A (with various scaling factors individually assigned) to other locations in the pspicture. This would be a lot easier, I think, than using the common plotting method since the type of plotting I need this for involves thinking of the angles and radii prior to plotting the image.
QUESTION: How may I direct Image A from the Cartesian point (-1,1) to say, the following three locations: (1) angle=-45 (deg); radius=\sqrt{2}. (2) angle=90; radius=3. and (3) angle=30; radius=2.5?
Thank you.

