diff --git a/__pycache__/tile.cpython-312.pyc b/__pycache__/tile.cpython-312.pyc new file mode 100644 index 0000000..424506f Binary files /dev/null and b/__pycache__/tile.cpython-312.pyc differ diff --git a/__pycache__/tile_grid.cpython-312.pyc b/__pycache__/tile_grid.cpython-312.pyc new file mode 100644 index 0000000..4d1dfe7 Binary files /dev/null and b/__pycache__/tile_grid.cpython-312.pyc differ diff --git a/tile.py b/tile.py index 697cf8e..192a84c 100644 --- a/tile.py +++ b/tile.py @@ -11,7 +11,7 @@ def draw_tile_outline(size): def draw_squiggle(size): forward(size/4) - pencolor("black") + pencolor("red") left(90) quarter_arc_right(size/4) quarter_arc_left(size/4) diff --git a/tile_grid.py b/tile_grid.py index 72a0f43..061d2eb 100644 --- a/tile_grid.py +++ b/tile_grid.py @@ -9,8 +9,7 @@ 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.) +(Defines height and width for the size of the square. Then defines that after drawing tile, the turtle moves to starting posiiton as to not trace the same square.) """ for y in range(height): for x in range(width):