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
// SPDX-License-Identifier: Apache-2.0
//! CATIA `b5 03` short-frame object topology family.
//!
//! [`graph`] scans the object stream into a reference-closed [`graph::B5Graph`];
//! [`transfer`] lowers that graph into the neutral IR through staged emit
//! passes. [`vecmath`] holds the vector helpers common to both.

pub mod graph;
pub(crate) mod transfer;
mod vecmath;

#[cfg(test)]
mod tests;