How to find a point given its distance from two other points?

631 Views Asked by At

Given the points A and B on a 2D plane, how do I find the coordinates of point C, which is distant l1 from A and l2 from B?

More specifically, how do I do this in C# with Unity (using vectors)?

I've already found an algebraic method of achieving this, but I have no idea where to start in turning this into working code.

1

There are 1 best solutions below

0
On

your points A and B are the centers of 2 circles, your distances l1 and l2 are the radius of these circles:

Determine where two circles intersect in C#:

http://csharphelper.com/blog/2014/09/determine-where-two-circles-intersect-in-c/

here you have the code you can copy paste into your project