Android Utililty Methods Point Distance

List of utility methods to do Point Distance

Description

The list of methods to do Point Distance are organized into topic(s).

Method

floatdistance(float x, float y, float sx, float sy)
distance
float dx = x - sx;
float dy = y - sy;
return (float) Math.sqrt(dx * dx + dy * dy);