generated from mwc/lab_iteration
i changed the squiggle
This commit is contained in:
@@ -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.)
|
||||
draws a grid of tiles of specified dimensions using pattern defined in tile_function.
|
||||
A tile is added to the row until the width is met, then it is increased in height by a tile and another row is complete.
|
||||
once the height is achieved, the grid is complete.
|
||||
"""
|
||||
for y in range(height):
|
||||
for x in range(width):
|
||||
|
||||
Reference in New Issue
Block a user