removed outdated comment

This commit is contained in:
Matthias Bisping 2022-02-04 17:46:17 +01:00
parent 9cc31b70e3
commit 8b308a0906

View File

@ -12,7 +12,7 @@ def make_box(x1, y1, x2, y2):
return dict(zip(keys, [x1, y1, x2, y2]))
def compute_intersection(a, b): # returns None if rectangles don't intersect
def compute_intersection(a, b):
a = Rectangle(*a.values())
b = Rectangle(*b.values())