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