Skip to main content

brepkit_io/obj/
mod.rs

1//! OBJ (Wavefront) mesh import and export.
2//!
3//! OBJ is the simplest widely-supported 3D mesh format.
4//! Supports vertex positions, normals, and triangle/polygon faces.
5
6pub mod reader;
7pub mod writer;
8
9pub use reader::{read_obj, read_obj_solid};
10pub use writer::write_obj;