generated from mwc/lab_iteration
Changed the docstring on line 13 to explain the
function. I think these are an amazing feature in the coding process. It gives me a tuch stone so I know exactly what I am looking at and how it works. In the drawing project, I think these will be key to creating in bite sized pieces and troubleshooting.
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user