From 3a4839b08f939d23bc6e28837931a44fec6548b2 Mon Sep 17 00:00:00 2001 From: mollychi Date: Mon, 15 Sep 2025 18:09:35 -0400 Subject: [PATCH] I only changed the discription of the fuction I dont think i will if its for my own use as its more work that i dont think i need to help me understand the code, but i might do it if its code im using to teach a course as it is very useful to people trying to understand what is going on. --- tile_grid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tile_grid.py b/tile_grid.py index 72a0f43..a6e73bd 100644 --- a/tile_grid.py +++ b/tile_grid.py @@ -10,7 +10,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.) + This function draws square tiles with the function described in tile_fuction on it, then once its completed the needed amount of squares in that row it returns back to the orginal x and y point and moves up 1 in y to start the next row """ for y in range(height): for x in range(width):