I have a circle of radius R with coordinates (Rx,Ry). I also have a point on this circle with coordinates (Ax,Ay).
Given an angle N which separates A from B, how can I calculate (Bx,By)?
It doesn't matter which B I calculate, I need both.
Thank you very much for your time.
The (up to) two points $B$ can be obtained from $A$ by rotating it around the circle’s center: $$\begin{align}B_x &= R_x+(A_x-R_x)\cos(\pm N)-(A_y-R_y)\sin(\pm N) \\ B_y &= R_y+(A_x-R_x)\sin(\pm N)+(A_y-R_y)\cos(\pm N).\end{align}$$ Choose the sign of $N$ consistently throughout. You can find a detailed description of this rotation along with other methods to accomplish it in this answer.