feat(renderer): implement OBJ parser with triangle/quad support

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-24 19:49:23 +09:00
parent 78dcc30258
commit c7d089d970
2 changed files with 229 additions and 0 deletions

View File

@@ -1,7 +1,10 @@
pub mod gpu;
pub mod obj;
pub mod pipeline;
pub mod vertex;
pub mod mesh;
pub mod camera;
pub use gpu::{GpuContext, DEPTH_FORMAT};
pub use mesh::Mesh;
pub use camera::{Camera, FpsController};