diff --git a/tile.py b/tile.py index 697cf8e..c34796d 100644 --- a/tile.py +++ b/tile.py @@ -10,15 +10,15 @@ def draw_tile_outline(size): square(size) def draw_squiggle(size): - forward(size/4) - pencolor("black") + forward(size/8) + pencolor("red") left(90) quarter_arc_right(size/4) quarter_arc_left(size/4) quarter_arc_left(size/4) quarter_arc_right(size/4) left(90) - fly(size/4) + fly(size/8) left(90) fly(size) left(90) diff --git a/tile_grid.py b/tile_grid.py index 72a0f43..513cdac 100644 --- a/tile_grid.py +++ b/tile_grid.py @@ -10,7 +10,9 @@ from tile import fly def draw_tile_grid(width, height, tile_size, tile_function): """Draws a (width x height) grid, with tile_function drawn on each tile. - (Your explanation here.) + (creates a tile and then moves to the starting point of the next tile + untill there are no more tiles in width and then repates for as many + times as heights exist) """ for y in range(height): for x in range(width):