Point Distance
GeometryEasyCalculate Euclidean, Manhattan, and Chebyshev distances between coordinate points.
Alt+Shift+D
Configuration Panel
Interactive Grid coordinates (Drag Points to reposition)
Time Complexity
O(1) direct mathematical calculations
Space Complexity
O(1) coordinates memory storage
Conceptual Overview
Point Distance measures the interval span between two coordinates in 2D or 3D coordinate space under various metrics (Euclidean, Manhattan, Chebyshev).
Mathematical Formula
Euclidean 2D: \sqrt{dx^2 + dy^2} | Manhattan: |dx| + |dy| | Chebyshev: \max(|dx|, |dy|)
Source: CP-Algorithms geometry reference