geometry-strategy 0.0.8

Pluggable per-coordinate-system strategies (Pythagoras, Haversine, Vincenty, …), Boost.Geometry style.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Strategies bound to the Cartesian coordinate-system family.
//!
//! Mirrors `boost/geometry/strategies/cartesian/` — the directory of
//! Boost strategy headers that key on `cartesian_tag`. T22 lands the
//! first member, `distance_pythagoras`; later tasks add the
//! point-to-segment projection (T24) and side / intersection kernels.

pub mod distance_projected_point;
pub mod distance_pythagoras;

pub use distance_projected_point::PointToSegment;
pub use distance_pythagoras::{ComparablePythagoras, Pythagoras};