Skip to main content

tess2_rust/
lib.rs

1// tess2-rust: Pure Rust port of libtess2 (SGI tessellation library)
2// Copyright 2025 Lars Brubaker
3// License: SGI Free Software License B (MIT-compatible)
4
5pub mod bucketalloc;
6pub mod dict;
7pub mod geom;
8pub mod mesh;
9pub mod priorityq;
10pub mod sweep;
11pub mod tess;
12
13pub use tess::{ElementType, TessOption, TessStatus, Tessellator, TessellatorApi, WindingRule};