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

@@ -7970,10 +7970,10 @@ class TransformEditorTool(AppTool):
"""
def bounds_rec(lst):
minx = np.Inf
miny = np.Inf
maxx = -np.Inf
maxy = -np.Inf
minx = np.inf
miny = np.inf
maxx = -np.inf
maxy = -np.inf
try:
for shape in lst:
@@ -7993,10 +7993,10 @@ class TransformEditorTool(AppTool):
def get_shapely_list_bounds(geometry_list):
xmin = np.Inf
ymin = np.Inf
xmax = -np.Inf
ymax = -np.Inf
xmin = np.inf
ymin = np.inf
xmax = -np.inf
ymax = -np.inf
for gs in geometry_list:
try: