rust/theme-editor/src/main.rs
changeset 14031 c47283feafac
parent 14030 2ebd505e62c1
child 14033 bf77c4d2294f
--- a/rust/theme-editor/src/main.rs	Tue Oct 30 02:14:00 2018 +0300
+++ b/rust/theme-editor/src/main.rs	Tue Oct 30 05:55:58 2018 +0300
@@ -83,8 +83,10 @@
     }
 
     let mut land = Land2D::new(WIDTH as usize, HEIGHT as usize, 0);
-    for i in 0..64 {
+    for i in 0..32 {
         land.draw_thick_line(point(), point(), rnd(5), u32::max_value());
+
+        land.fill_circle(point(), rnd(60), u32::max_value());
     }
 
     fill_texture(&mut land_surf, &land);