This commit is contained in:
Artix
2025-03-04 12:12:06 +02:00
parent 08f8ca60a8
commit 859ef325eb
16 changed files with 93 additions and 93 deletions

View File

@@ -1034,7 +1034,7 @@ def nearest_point(origin, points_list):
:return: Nearest Point
:rtype: Point
"""
old_dist = np.Inf
old_dist = np.inf
nearest_pt = None
for pt in points_list: