diff --git a/src/main.rs b/src/main.rs index f4e484f..deea4e3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -182,10 +182,7 @@ impl Polyhedron { } } - fn add_position( - &mut self, - vertex: Vector3, - ) -> usize { + fn add_position(&mut self, vertex: Vector3) -> usize { let vertex_key = ( (vertex.x * VERT_CACHE_PRECISION).round() as i32, (vertex.y * VERT_CACHE_PRECISION).round() as i32,