If I know radius1, and radius2, and the distance between them d, is there a formula that can adjust the radii so that the circles become intersecting if they are not already?
Points are ruled out through these rules:
d > radius1 + radius2
d < |radius1 - radius2|
d = 0
radius1 = radius2
If any of the above rules are met, the circles do not intersect. I need a way to adjust the radii for each case - to make the circles intersect (I am estimating a location)
For anyone who knows swift, this explains what I did - its simple addition/subtraction:
It is quite simple I know, feel free to elaborate.