3d model loading

This commit is contained in:
Werner
2021-11-05 12:36:09 -03:00
parent 7792887fba
commit c5dbf96177
14 changed files with 746 additions and 577 deletions

3
Source/Vertex.rs Normal file
View File

@ -0,0 +1,3 @@
pub trait Vertex {
fn desc<'a>() -> wgpu::VertexBufferLayout<'a>;
}