Some quite aggressive commit... 😢

This commit is contained in:
Thomas Forgione
2018-04-17 10:45:44 +02:00
parent c5b04aef9d
commit 25ee1fefce
18 changed files with 563 additions and 507 deletions
+3 -1
View File
@@ -8,7 +8,9 @@ use std::path::{Path, PathBuf};
use std::fs::File;
use std::io::{BufReader, Error};
use math::vector::{Vector2, Vector3};
use model::{Face, Model, Material, ModelError};
use model::face::Face;
use model::material::Material;
use model::{Model, ModelError};
/// A 3D element.
///
+1 -1
View File
@@ -2,7 +2,7 @@
use parser::{Element, ParserError, LineParser};
use math::vector::{Vector2, Vector3};
use model::{FaceVertex, Face};
use model::face::{FaceVertex, Face};
/// The wavefront OBJ format parser.
pub struct ObjParser {