cad_import 0.3.1

A simple library for importing CAD data from different formats into a uniform in-memory structure.
Documentation
1
2
3
4
5
6
7
8
//! The structure module contains the definition of the in-memory structure.
mod cad_data;
mod shape;
mod tree;

pub use cad_data::CADData;
pub use shape::*;
pub use tree::Node;