brepkit-io 3.2.21

Multi-format B-Rep data exchange for brepkit (STEP, IGES, STL, 3MF, OBJ, PLY, glTF)
Documentation
1
2
3
4
5
6
7
8
9
10
//! glTF 2.0 binary (.glb) import and export.
//!
//! Imports and exports tessellated B-Rep geometry as glTF binary files
//! suitable for web viewers, game engines, and real-time 3D applications.

pub mod reader;
pub mod writer;

pub use reader::{read_glb, read_glb_solid};
pub use writer::write_glb;