From 16b1caeeeb6a13ae8d75de46bd6d5039773611a3 Mon Sep 17 00:00:00 2001 From: Jeroen Gardeyn Date: Fri, 12 Jul 2024 13:17:39 +0200 Subject: [PATCH] fmt --- jagua-rs/src/geometry/convex_hull.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jagua-rs/src/geometry/convex_hull.rs b/jagua-rs/src/geometry/convex_hull.rs index 9d43ff1..b444a65 100644 --- a/jagua-rs/src/geometry/convex_hull.rs +++ b/jagua-rs/src/geometry/convex_hull.rs @@ -12,7 +12,9 @@ pub fn convex_hull_indices(shape: &SimplePolygon) -> Vec { indices } -pub fn convex_hull_from_shapes<'a>(shapes: impl IntoIterator) -> Vec { +pub fn convex_hull_from_shapes<'a>( + shapes: impl IntoIterator, +) -> Vec { let mut ch_points = vec![]; for shape in shapes { if let Some(surr) = shape.surrogate.as_ref() {