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
@@ -0,0 +1,7 @@
from matplotlib import pyplot as plt
import arena
for line in arena.boundary_lines:
plt.plot([line[0][0], line[1][0]], [line[0][1], line[1][1]], color="black")
plt.show()