aboutsummaryrefslogtreecommitdiffstats
path: root/src/cow_vertex.rs
blob: c0990526c832e3c4815dc79b00c7d44094261ce2 (plain)
1
2
3
4
5
6
7

#[derive(Copy, Clone)]
pub struct Vertex {
    pub position: (f32, f32, f32),
    pub normal: (f32, f32, f32),
}
implement_vertex!(Vertex, position, normal);