rust/land2d/src/lib.rs
changeset 14076 e5904ead4864
parent 14052 9c817b2eedae
child 14078 bf40b5f938b0
--- a/rust/land2d/src/lib.rs	Fri Nov 02 14:08:45 2018 +0100
+++ b/rust/land2d/src/lib.rs	Fri Nov 02 13:17:46 2018 +0100
@@ -4,8 +4,8 @@
 use std::cmp;
 
 use integral_geometry::{
-    ArcPoints, EquidistantPoints, LinePoints,
-    Point, Size, SizeMask
+    ArcPoints, EquidistantPoints,
+    Point, Size, SizeMask, Line
 };
 
 pub struct Land2D<T> {
@@ -103,8 +103,8 @@
         }).count()
     }
 
-    pub fn draw_line(&mut self, from: Point, to: Point, value: T) -> usize {
-        self.fill_from_iter(LinePoints::new(from, to), value)
+    pub fn draw_line(&mut self, line: Line, value: T) -> usize {
+        self.fill_from_iter(line.into_iter(), value)
     }
 
     pub fn fill(&mut self, start_point: Point, border_value: T, fill_value: T) {
@@ -263,12 +263,12 @@
         }).sum()
     }
 
-    pub fn draw_thick_line(&mut self, from: Point, to: Point, radius: i32, value: T) -> usize {
+    pub fn draw_thick_line(&mut self, line: Line, radius: i32, value: T) -> usize {
         let mut result = 0;
 
         for vector in ArcPoints::new(radius) {
             for delta in EquidistantPoints::new(vector) {
-                for point in LinePoints::new(from, to) {
+                for point in line.into_iter() {
                     self.map_point(point + delta, |p| {
                         if *p != value {
                             *p = value;
@@ -308,13 +308,13 @@
     fn fill() {
         let mut l: Land2D<u8> = Land2D::new(Size::square(128), 0);
 
-        l.draw_line(Point::new(0, 0), Point::new(32, 96), 1);
-        l.draw_line(Point::new(32, 96), Point::new(64, 32), 1);
-        l.draw_line(Point::new(64, 32), Point::new(96, 80), 1);
-        l.draw_line(Point::new(96, 80), Point::new(128, 0), 1);
+        l.draw_line(Line::new(Point::new(0, 0), Point::new(32, 96)), 1);
+        l.draw_line(Line::new(Point::new(32, 96), Point::new(64, 32)), 1);
+        l.draw_line(Line::new(Point::new(64, 32), Point::new(96, 80)), 1);
+        l.draw_line(Line::new(Point::new(96, 80), Point::new(128, 0)), 1);
 
-        l.draw_line(Point::new(0, 128), Point::new(64, 96), 1);
-        l.draw_line(Point::new(128, 128), Point::new(64, 96), 1);
+        l.draw_line(Line::new(Point::new(0, 128), Point::new(64, 96)), 1);
+        l.draw_line(Line::new(Point::new(128, 128), Point::new(64, 96)), 1);
 
         l.fill(Point::new(32, 32), 1, 2);
         l.fill(Point::new(16, 96), 1, 3);