rust/land_dump/src/main.rs
changeset 14137 3119d665d3c6
parent 14130 ab280be4b617
child 14152 5acfdf49742d
--- a/rust/land_dump/src/main.rs	Mon Nov 05 22:43:58 2018 +0300
+++ b/rust/land_dump/src/main.rs	Mon Nov 05 23:15:34 2018 +0300
@@ -36,10 +36,10 @@
 fn template() -> OutlineTemplate {
     let mut template = OutlineTemplate::new(Size::new(4096, 2048));
     template.islands = vec![vec![
-        Rect::new(100, 2050, 1, 1),
-        Rect::new(100, 500, 400, 1200),
-        Rect::new(3600, 500, 400, 1200),
-        Rect::new(3900, 2050, 1, 1),
+        Rect::from_size_coords(100, 2050, 1, 1),
+        Rect::from_size_coords(100, 500, 400, 1200),
+        Rect::from_size_coords(3600, 500, 400, 1200),
+        Rect::from_size_coords(3900, 2050, 1, 1),
     ]];
     template.fill_points = vec![Point::new(2047, 2047)];