I have been on it for few days now, maybe someone could tell me I am on the right track.
So i got 2 points of a linear graph:
Ax, Ay
Bx, By
And a foo number.
Also I got a statement :
foo = (Cx - Bx) / (Cy - By)
I need to find Cx, Cy
Now I have been trying to do it using linear graph equation. (y = mx + b)
Knowing Ax, Ay, Bx, By, I get m and b for the linear graph.
Ending up with:
foo = (Cx - Bx) / ( (m * Cx + b) - By)
Solving for Cx, i get :
Cx = (foo * (By - b) - Bx) / (foo * s - 1)
I have been reworking this one for a while now, but the results are not as expected.
--== START of EDIT ==--
With Cx equation I got above, I get Cx = Bx, or very close to it. (I run it on Python)
Expected result: foo > Cx > Bx
--== END if EDIT ==--
I wonder if this is a correct way of doing it and if I made some mistake. If so - maybe someone could point it out for me :)
$ C_x $for $C_x$. Looks pretty that way. ^_^ – hjpotter92 Feb 1 at 14:07