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