Skip to main content

exact_poly/
lib.rs

1//! exact-poly — integer polygon geometry for deterministic computation.
2//! All coordinates are i64 fixed-point (SCALE=1_000_000 units = 1 meter).
3//! No float arithmetic. WASM bindings in src/wasm/.
4
5pub mod aabb;
6pub mod area;
7pub mod bayazit;
8pub mod constants;
9pub mod containment;
10pub mod decompose;
11pub mod ear_clip;
12pub mod exact_partition;
13pub mod hertel_mehlhorn;
14pub mod overlap;
15pub mod primitives;
16pub mod ring;
17pub mod sat;
18pub mod shared_edge;
19pub mod signed;
20pub mod spatial;
21pub mod topology;
22pub mod types;
23pub mod validate_onchain;
24pub mod validation;
25pub mod wasm;