Skip to content

Commit

Permalink
copy layerstack
Browse files Browse the repository at this point in the history
  • Loading branch information
joamatab committed Oct 17, 2023
1 parent 580bf2b commit bd28559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gplugins/meow/meow_eme.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def __init__(
z_min, x_min, z_max, x_max = component.bbox.ravel()
z_min, z_max = min(z_min, z_max) + 1e-10, max(z_min, z_max) - 1e-10
x_min, x_max = min(x_min, x_max) + 1e-10, max(x_min, x_max) - 1e-10
layer_stack = layer_stack.model_dump()
layer_stack = layer_stack.model_copy()
ys = list_unique_layer_stack_z(layer_stack)
y_min, y_max = np.min(ys) + 1e-10, np.max(ys) - 1e-10

Expand Down

0 comments on commit bd28559

Please sign in to comment.