This commit is contained in:
DuOtto
2025-07-17 21:54:45 +02:00
parent 93d46923a5
commit 1d63671fad
21 changed files with 513 additions and 412 deletions
+6
View File
@@ -0,0 +1,6 @@
import numpy as np
# ----- Helper Functions -----
def compute_distance(p1, p2):
return np.hypot(p2[0] - p1[0], p2[1] - p1[1])