From 912f08e91453d855bc803003f83efdcc73774dd3 Mon Sep 17 00:00:00 2001 From: Michael Sippel Date: Fri, 28 Oct 2022 10:22:50 +0200 Subject: [PATCH] grid area: correctly convert empty set to empty range --- nested/src/grid/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nested/src/grid/mod.rs b/nested/src/grid/mod.rs index 87f722f..5eec2ae 100644 --- a/nested/src/grid/mod.rs +++ b/nested/src/grid/mod.rs @@ -33,12 +33,12 @@ impl IndexArea> { IndexArea::Full => panic!("range from full grid area"), IndexArea::Set(v) => { Point2::new( - v.iter().map(|p| p.x).min().unwrap_or(0), - v.iter().map(|p| p.y).min().unwrap_or(0), + v.iter().map(|p| p.x).min().unwrap_or(i16::MAX), + v.iter().map(|p| p.y).min().unwrap_or(i16::MAX), ) ..=Point2::new( - v.iter().map(|p| p.x).max().unwrap_or(0), - v.iter().map(|p| p.y).max().unwrap_or(0), + v.iter().map(|p| p.x).max().unwrap_or(i16::MIN), + v.iter().map(|p| p.y).max().unwrap_or(i16::MIN), ) } IndexArea::Range(r) => r.clone(),