forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDistanceBetweenTwoPoints.java
More file actions
33 lines (30 loc) · 1.04 KB
/
DistanceBetweenTwoPoints.java
File metadata and controls
33 lines (30 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.thealgorithms.maths;
/**
* Distance Between Two Points in 2D Space.
*
* <p>This class provides a method to calculate the Euclidean distance between two points in a
* two-dimensional plane.
*
* <p>Formula: d = sqrt((x2 - x1)^2 + (y2 - y1)^2)
*
* <p>Reference: https://en.wikipedia.org/wiki/Euclidean_distance
*/
public final class DistanceBetweenTwoPoints {
private DistanceBetweenTwoPoints() {
// Utility class; prevent instantiation
}
/**
* Calculate the Euclidean distance between two points.
*
* @param x1 x-coordinate of the first point
* @param y1 y-coordinate of the first point
* @param x2 x-coordinate of the second point
* @param y2 y-coordinate of the second point
* @return Euclidean distance between the two points
*/
public static double calculate(final double x1, final double y1, final double x2, final double y2) {
final double deltaX = x2 - x1;
final double deltaY = y2 - y1;
return Math.sqrt(deltaX * deltaX + deltaY * deltaY);
}
}