tess2-rust 1.1.0

Pure Rust port of libtess2 — complete SGI polygon tessellation pipeline with winding rules, self-intersections, and multiple output modes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// tess2-rust: Pure Rust port of libtess2 (SGI tessellation library)
// Copyright 2025 Lars Brubaker
// License: SGI Free Software License B (MIT-compatible)

pub mod bucketalloc;
pub mod dict;
pub mod geom;
pub mod mesh;
pub mod priorityq;
pub mod sweep;
pub mod tess;

pub use tess::{ElementType, TessOption, TessStatus, Tessellator, TessellatorApi, WindingRule};