diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-05-11 11:33:45 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-05-11 11:33:45 -0400 |
commit | adaafdd7043507cbceae65e78c38954e47103b5c (patch) | |
tree | c8e2b62b2f39e0f2dc7908ca613df92dd7b541c1 /src/frontier/mean.rs | |
parent | 825515439247853af3714d3135051a83bd84d2e0 (diff) | |
download | kd-forest-adaafdd7043507cbceae65e78c38954e47103b5c.tar.xz |
Fix some clippy lints
Diffstat (limited to 'src/frontier/mean.rs')
-rw-r--r-- | src/frontier/mean.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frontier/mean.rs b/src/frontier/mean.rs index 889c5ba..6a32b97 100644 --- a/src/frontier/mean.rs +++ b/src/frontier/mean.rs @@ -129,6 +129,10 @@ impl<C: ColorSpace> Frontier for MeanFrontier<C> { self.len - self.deleted } + fn is_empty(&self) -> bool { + self.len() == 0 + } + fn place(&mut self, rgb8: Rgb8) -> Option<(u32, u32)> { let color = C::from(rgb8); let (x, y) = self.forest.nearest(&color).map(|n| n.item.pos)?; |