//! Proximity queries and spatial graph construction
//!
//! This module provides algorithms for computing distances between geometric objects
//! and constructing proximity-based graphs from point sets.
//!
//! # Features
//!
//! * **Hausdorff distance** between point sets
//! * **Frechet distance** between curves (discrete approximation)
//! * **Euclidean Minimum Spanning Tree** (MST)
//! * **Gabriel graph**
//! * **Relative neighborhood graph**
//! * **Alpha shapes** (concave hull generalization)
pub use ;
pub use ;