wavefront_obj/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! Parsers for wavefront's `.obj` and `.mtl` file format for loading meshes.
#![crate_type = "lib"]
#![deny(warnings)]
#![deny(missing_docs)]
#![deny(unreachable_pub)]

pub use lex::ParseError;

mod lex;
mod util;

pub mod mtl;
pub mod obj;