subdiv-kernels 0.1.0

Standalone subdivision kernel crate for Rust and wasm32 workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Doo-Sabin vertex stencil extraction.
//!
//! Mirrors the CC/Loop/Sqrt3 stencils layout: `sparse`, `points`,
//! `level`, `refine`. See [`super::stencils`] docs for the overall
//! two-phase design.

mod level;
mod points;
mod refine;
mod sparse;

pub(crate) use level::{DooSabinLevelData, base_level_data};
pub(crate) use refine::{refine_topology_once, vertex_stencils_from_level};