Midpoint Calculator
Calculate the midpoint between two points in 2D or 3D space.
Result
The midpoint coordinates are:
X: 0
Y: 0
Z: 0
How it works
The midpoint between two points is calculated as:
- For 2D: M = ((x₁ + x₂)/2, (y₁ + y₂)/2)
- For 3D: M = ((x₁ + x₂)/2, (y₁ + y₂)/2, (z₁ + z₂)/2)
Where M represents the midpoint coordinates.