Import OBJ files

The OBJ file format.

use tessellate::files::obj::import_objs;
fn main() -> TessResult<()> {
    let options = tobj::LoadOptions::default();
    let meshes = import_objs("path/to/your.obj", &options)?;
    Ok(())
}