📏 Distance Calculator
Calculate the distance between two points in 2D or 3D space using the Euclidean distance formula.
Point 1
Point 2
Distance Formula
2D Distance
d = √[(x₂ - x₁)² + (y₂ - y₁)²]
3D Distance
d = √[(x₂ - x₁)² + (y₂ - y₁)² + (z₂ - z₁)²]
Midpoint Formula
M = ((x₁ + x₂)/2, (y₁ + y₂)/2, (z₁ + z₂)/2)