polyops 0.0.4

Martinez-Rueda polygon clipping algorithm: Boolean operations (intersection, union, difference, xor) over polygons and multipolygons. Rust port of martinez-polygon-clipping.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Benchmark suite — populated once the algorithm is implemented.
//!
//! Mirrors upstream `bench/martinez.bench.ts`: asia union, states clip,
//! hole_hole, etc. We'll wire this up with `criterion` once there's
//! something real to measure. For now this file exists so the
//! `[[bench]]` declaration in Cargo.toml resolves.

fn main() {
    eprintln!("polyops benchmarks not yet defined — add criterion-driven cases here.");
}