After watching Philipp Kindermann's excellent sweep-line videos I think I finally understand how this algorithm works.
This is my humble take on an implementation of the segment line intersection sweep-line algorithm. \ \ The library crate also contains a line intersection function.
Code still in development, not ready for any purpose.
Quick iterative example:
fish
cargo run --example fltk_gui --features console_trace
Intersection function API example: ```rust use intersection2d::{intersect, Intersection}; use geo;
let line1 = geo::Line::
Sweep-line API example: ```rust use geo; use intersect2d::algorithm::AlgorithmData;
let l = vec![
geo::Line::new(
geo::Coordinate { x: 200., y: 200. },
geo::Coordinate { x: 350., y: 300. },
),
geo::Line::new(
geo::Coordinate { x: 400., y: 200. },
geo::Coordinate { x: 250., y: 300. },
),
];
let results = AlgorithmData::
Detection of self-intersecting geo::LineString:
```rust
let coords = vec![(200., 200.), (300., 300.), (400., 200.), (200., 300.)];
let linestring: geo::LineString
// Obviously this example only makes sense for long LinesStrings.
let result = AlgorithmData::