🐛 Fix some problems with modifiers

This commit is contained in:
alonso.torres 2025-05-26 15:41:12 +02:00
parent 1a705cee24
commit a85a42d367
10 changed files with 138 additions and 99 deletions

View file

@ -64,7 +64,7 @@ impl Bounds {
Self { nw, ne, se, sw }
}
pub fn join_bounds(bounds: &[&Bounds]) -> Self {
pub fn join_bounds(bounds: &[Bounds]) -> Self {
let (min_x, min_y, max_x, max_y) =
bounds
.iter()