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
9
10
11
//! The loader module contains the loader manager, the loader trait and all implemented loaders.
pub mod loader_gltf;
pub mod loader_off;

mod loader;
mod manager;
mod resource;

pub use loader::{Loader, ExtensionMap};
pub use manager::Manager;
pub use resource::*;