upated comments about how tile drawing worked and

the tile funtion.  Need to update square and ranges.
This commit is contained in:
lfitchlee
2025-09-29 10:25:56 -04:00
parent 1b642f81ec
commit 7a5a3c566a
4 changed files with 19 additions and 9 deletions

16
tile.py
View File

@@ -10,15 +10,17 @@ def draw_tile_outline(size):
square(size)
def draw_squiggle(size):
forward(size/4)
pencolor("black")
forward(size/2)
pencolor("blue")
left(90)
quarter_arc_right(size/4)
quarter_arc_left(size/4)
quarter_arc_left(size/4)
quarter_arc_right(size/4)
quarter_arc_right(size/2)
quarter_arc_left(size/2)
quarter_arc_left(size/2)
quarter_arc_right(size/2)
left(90)
fly(size/4)
fly(size/5)
left(90)
fly(size)
left(90)
fly(size)
left(90)