//! A module containing the vertex structure shared across all shapes.
externcrate glium;/// The vertex structure shared across all shapes.
#[derive(Copy,Clone,Debug)]pubstructVertex{pubposition: [f32; 3],
pubnormal: [f32; 3],
pubtexcoord: [f32; 2],
}implement_vertex!(Vertex, position, normal, texcoord);