3D Distance Calculator
Find the distance between two 3D points.
Straight-line distance between two points in space.
The math behind it
d = √(Δx² + Δy² + Δz²) — the Pythagorean theorem in three dimensions.
Worked example
(0,0,0) to (2,3,6) → 7.
FAQ
Why 7?
√(4+9+36) = √49 = 7.