List of utility methods to do Point Distance
float dx = x - sx; float dy = y - sy; return (float) Math.sqrt(dx * dx + dy * dy);