cadmpeg-codec-catia 0.3.0

Read geometry and topology from .CATPart files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Combinatorial solvers plus the byte-table readers that feed them.
//!
//! `incidence`, `matching`, and `union_find` are pure combinatorial primitives
//! over integer node indices. `missing_edge` and `mesh_quotient` also carry
//! byte parsers: they read the standard-family trim-mesh and boundary tables
//! directly, so this module is coupled to the standard family's on-disk layout
//! rather than being purely domain-agnostic.

pub(crate) mod incidence;
pub(crate) mod matching;
pub(crate) mod mesh_quotient;
pub(crate) mod missing_edge;
pub(crate) mod union_find;

pub(crate) use union_find::UnionFind;