Given two points, A and B; Given two circles, having 2 points in common, I1 and I2:
- one circle at center C1, with radius r1, with the point A on to it
- and another circle at center C2, with radius r2, with the point B on it.
Find the centers and radii of the two circles which still touch the points A and B in the same manner but only have one point in common located "mid-way" between the original circles.
Edit: Im not sure if the phrasing of the question is entirely correct, also im not sure if im missing some corner cases. Basically the question is revolving around detecting the collision of two circles "glued" to the points A and B. In the solution, center of the first circle should belong to the line (A, C1), while center of the second to (B, C2)

