I try to program a slope failure simulation in Matlab and now the following problem occurred:
Let's say I've got to points $A(X_1,Y_1)$ and $B(X_2,Y_2)$, which build one side $c$ of a triangle. Additionally I've got the opposite angle $\gamma$ of side $c$ and the ratio of side $a$ to $b$.
The triangle should find the center of a logarithmic spiral, that's why I know the ratio:
$$ b=a*e^{\gamma *k} $$
where $k$ is a known constant.
Now I need the third point of this triangle (or center of spiral) C. Do you have any idea how i could do this?
I thought of sine law and that the sum of the three angles should be $\pi$, but I couldn't find a solution yet.