From 6d4b152c62fc65e4cc8399bf7bbd4d991d3b9801 Mon Sep 17 00:00:00 2001 From: bpot Date: Thu, 12 Feb 2026 11:12:25 -0500 Subject: [PATCH] i made my tile and added the explanation --- tile.py | 6 +++--- tile_grid.py | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) 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):