// Takes two sets of points and calculates the distance between them
// on a Cartesian coordinate system.
public static double distance(int x1, int y1, int x2, int y2) {
double xPoints = Math.Pow((x2 - x1), 2.0);
double yPoints = Math.Pow((y2 - y1), 2.0);
return Math.Sqrt(xPoints + yPoints);
}
Posted: March 18, 2023
Return to the snippets listing