brepkit-io 3.2.12

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
11
12
//! STL (stereolithography) import and export.
//!
//! Supports both binary and ASCII STL formats.
//! STL is the most common format for 3D printing.

pub mod import;
pub mod reader;
pub mod writer;

pub use import::import_mesh;
pub use reader::{read_stl, read_stl_solid};
pub use writer::write_stl;