I have two points, approximately we take values for that:
Point $A = (50, 150)$; Point $B = (150, 50)$;
So the distance should be calculated here, $\text{distance} = \sqrt{(B_x - A_x)(B_x - A_x) + (B_y - A_y)(B_y - A_y)}$;
Now I want any one poins which is far from Second point B at specific distance (Example, 10).
B(x,y) / / C(x,y) / / / / / / A(x,y)
Point c on Line Segment and its specific distance from point B(Ex, 10)..
Which formula would be better to calculate C point here ?
Please help me about that.