Examples firmed up for first section.

This commit is contained in:
Danny Staple
2022-12-21 13:23:44 +00:00
parent 66738da6d9
commit 752c298f8d
23 changed files with 1513 additions and 59 deletions
+11
View File
@@ -0,0 +1,11 @@
"""Represent the lines of the arena"""
boundary_lines = [
[(0,0), (0, 1500)],
[(0, 1500), (1500, 1500)],
[(1500, 1500), (1500, 500)],
[(1500, 500), (1000, 500)],
[(1000, 500), (1000, 0)],
[(1000, 0), (0, 0)],
]