Skip to main content

geometry_strategy/cartesian/
mod.rs

1//! Strategies bound to the Cartesian coordinate-system family.
2//!
3//! Mirrors `boost/geometry/strategies/cartesian/` — the directory of
4//! Boost strategy headers that key on `cartesian_tag`. T22 lands the
5//! first member, `distance_pythagoras`; later tasks add the
6//! point-to-segment projection (T24) and side / intersection kernels.
7
8pub mod distance_projected_point;
9pub mod distance_pythagoras;
10
11pub use distance_projected_point::PointToSegment;
12pub use distance_pythagoras::{ComparablePythagoras, Pythagoras};