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() {