Add obj parsing

This commit is contained in:
hal8174 2024-10-02 23:43:13 +02:00
parent 0a70fbd8d4
commit 556f50274d
13 changed files with 1004 additions and 3 deletions

View file

@ -0,0 +1,10 @@
use miette::Result;
use ray_tracing_scene::parse_obj::ObjData;
fn main() -> Result<()> {
let obj = ObjData::new("obj/cornell_box.obj")?;
dbg!(obj);
Ok(())
}