Substitute curve's mutable elements with .tuple_windows(), remove dummy tests

This commit is contained in:
Michał Chodzikiewicz 2021-03-04 11:29:27 +01:00
parent 59835f881d
commit cbc0083fb4

View file

@ -102,7 +102,7 @@ impl<C, I> DrawableCurve<C, I>
}
/// set curve line thickness
pub fn set_thickness(mut self, thickness: usize) -> DrawableCurve<C,I> {
pub fn set_thickness(mut self, thickness: usize) -> DrawableCurve<C, I> {
self.thickness = Some(thickness);
self
}
@ -123,22 +123,13 @@ impl<C, I> Drawable<C> for DrawableCurve<C, I>
Some(t) => t,
};
let style = PrimitiveStyle::with_stroke(color, thickness as u32);
let mut iter = self.scaled_data.into_iter();
let mut prev = iter.next().unwrap();
for point in iter {
self.scaled_data
.tuple_windows()
.try_for_each(|(prev, point)| -> Result<(), D::Error> {
Line::new(prev, point)
.into_styled(style)
.draw(display)?;
prev = point;
}
Ok(())
.draw(display)
})
}
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}