I'm trying to find the last point in a triangle like this below

I know what $X1,Y1$ and $X2,Y2$ is. Now i need to Find $X3,Y3$ which should lay at a angle of $45°$ from $X2,Y2$
I can get the length between $X1Y1$ And $X2,Y2$ If needed.
I know this should be a simple matter, but i just can't find the right way to do it. And by searching online, i only found some high level math, i could not follow. So please bare with me, an explain how this can be done, for stupid me.
Using complex numbers
\begin{align*} \frac{z_3-z_1}{z_2-z_1} &= \operatorname{cis} \frac{\pi}{4} \\ &= \frac{1+i}{\sqrt{2}} \\ z_3 &= z_1+\frac{(1+i)(z_2-z_1)}{\sqrt{2}} \\ x_3+y_3 i &= x_1+y_1 i+\frac{1+i}{\sqrt{2}} [(x_2-x_1)+(y_2-y_1)i] \\ &= \left( x_1+\frac{x_2-x_1+y_1-y_2}{\sqrt{2}} \right)+ \left( y_1+\frac{x_2-x_1+y_2-y_1}{\sqrt{2}} \right)i \\ \begin{pmatrix} x_3 \\ y_3 \end{pmatrix} &= \begin{pmatrix} x_1+\frac{x_2-x_1+y_1-y_2}{\sqrt{2}} \\ y_1+\frac{x_2-x_1+y_2-y_1}{\sqrt{2}} \end{pmatrix} \end{align*}
Only with elementary backgrounds