generated from mwc/lab_iteration
50 lines
1.5 KiB
Python
50 lines
1.5 KiB
Python
# tile_grid.py, trying tor resubmit
|
|
# ------------
|
|
# By MWC Contributors
|
|
#
|
|
# Implements `draw_tile_grid`, which draws a grid of tiles.
|
|
|
|
from turtle import *
|
|
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.
|
|
takes 4 commands
|
|
width is the number of tiles wide as inputted by the user
|
|
height is the number of tiles high as inputted by the user
|
|
tile_size is the size of the tile as inputted by the user
|
|
tile_function is the squiggle on the tile
|
|
For y in range(height) and for x in range(width) repeats the tile design for each tile
|
|
and then moves back over or up to start drawing another tile until enough tiles
|
|
to satisfy the height and width have been drawn
|
|
The width (horizontal) tiles are drawn first because they are indented below line 23
|
|
"""
|
|
for y in range(height):
|
|
for x in range(width):
|
|
tile_function(tile_size)
|
|
fly(tile_size)
|
|
return_to_x_origin(tile_size, width)
|
|
move_up_one_row(tile_size)
|
|
return_to_y_origin(tile_size, height)
|
|
|
|
def return_to_x_origin(tile_size, width):
|
|
"After drawing a row of tiles, returns the turtle to the starting x position"
|
|
fly(-1 * tile_size * width)
|
|
|
|
def return_to_y_origin(tile_size, height):
|
|
"After drawing all rows of tiles, returns the turtle to the starting y position"
|
|
right(90)
|
|
fly(tile_size * height)
|
|
left(90)
|
|
|
|
def move_up_one_row(tile_size):
|
|
"Moves the turtle up one row"
|
|
left(90)
|
|
fly(tile_size)
|
|
right(90)
|
|
|
|
|
|
|
|
|
|
|