diff -r 2ebd505e62c1 -r c47283feafac rust/theme-editor/src/main.rs --- 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);