wavefront 0.2.3

A Wavefront OBJ parser and utility crate
Documentation
1
2
3
4
5
6
7
8
use wavefront::Obj;

#[test]
fn basic() {
    let obj = Obj::from_reader(include_bytes!("ship.obj") as &[u8]).unwrap();

    println!("{}", obj);
}