Manhattan Distance Calculator
Calculate the Manhattan distance between two points in 2D or 3D space.
Result
The Manhattan distance is: 0 units
How it works
The Manhattan distance between two points is calculated as:
- For 2D: |x₂ - x₁| + |y₂ - y₁|
- For 3D: |x₂ - x₁| + |y₂ - y₁| + |z₂ - z₁|
Where |x| represents the absolute value of x.