OK, so I\'ve written most of a program that will allow me to determine if two circles overlap.
I have no problems whatsoever with my program aside from one issue: t
This may be OLD, but here is the best answer:
float dist = (float) Math.sqrt( Math.pow(x1 - x2, 2) + Math.pow(y1 - y2, 2) );