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
//! Shared low-level byte-reading primitives for the CATIA codec.
//!
//! `wire` owns the checked [`Cursor`] and the compact-int / reference-token
//! readers that were previously duplicated across the `b5` and `e5` families.

pub(crate) mod bytes;
pub(crate) mod cursor;
pub(crate) mod records;
pub(crate) mod tokens;

pub(crate) use tokens::{compact_uint, counted_refs, object_ref};