From 1d9ff5516343116d39ba1acce086b62aacd79bc8 Mon Sep 17 00:00:00 2001 From: numzero Date: Sun, 22 Sep 2024 15:40:47 +0300 Subject: [PATCH] Farther --- src/bin/wireframe/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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();