If I have two circles where the center and radius are known, can I solve for all of the points where the edges of those circles are a specific distance apart?
For example:
circle 1:
center:
x: 10
y: 12
radius: 6
circle 2:
center:
x: 14
y: 16
radius: 8
How do I find the sets of coordinates for every instance where the distance between the edge of circle 1 and the edge of circle 2 is equal to 4?
JavaScript answers preferred, but if you have a function in another language that works I can try to convert it