diff --git a/src/bin/wireframe/main.rs b/src/bin/wireframe/main.rs index 13854bd..e68cced 100644 --- a/src/bin/wireframe/main.rs +++ b/src/bin/wireframe/main.rs @@ -26,16 +26,16 @@ fn main() { let indices = glium::index::NoIndices(glium::index::PrimitiveType::LineLoop); let shape = vec![ Vertex { - position: [-1., 0., 2.], + position: [-1., 0., 4.], }, Vertex { - position: [0., -1., 2.], + position: [0., -1., 4.], }, Vertex { - position: [1., 0., 2.], + position: [1., 0., 4.], }, Vertex { - position: [0., 1., 2.], + position: [0., 1., 4.], }, ]; let vertex_buffer = VertexBuffer::new(&display, &shape).unwrap();