Spaces:
Sleeping
Sleeping
Commit ·
2895610
1
Parent(s): 0921946
Updating
Browse files
app.py
CHANGED
|
@@ -459,7 +459,6 @@ if st.checkbox("Generate Linear Interpolation"):
|
|
| 459 |
|
| 460 |
if st.button("Generate STL Model"):
|
| 461 |
# Generate the STL File
|
| 462 |
-
time.sleep(15) # Add a delay to control the update rate
|
| 463 |
linear_stl = convert_sdf_to_stl(linear_sdf, threshold_divisor=threshold_divisor_input)
|
| 464 |
|
| 465 |
# Download the STL File
|
|
@@ -573,7 +572,6 @@ if st.checkbox("Generate Mesh Interpolation"):
|
|
| 573 |
str((mesh_sdf_max - abs(mesh_sdf_min)) / 2))
|
| 574 |
|
| 575 |
if st.button("Generate STL Model"):
|
| 576 |
-
time.sleep(15) # Add a delay to control the update rate
|
| 577 |
# Generate the STL File
|
| 578 |
linear_stl = convert_sdf_to_stl(mesh_sdf, threshold_divisor=mesh_threshold_divisor_input)
|
| 579 |
|
|
|
|
| 459 |
|
| 460 |
if st.button("Generate STL Model"):
|
| 461 |
# Generate the STL File
|
|
|
|
| 462 |
linear_stl = convert_sdf_to_stl(linear_sdf, threshold_divisor=threshold_divisor_input)
|
| 463 |
|
| 464 |
# Download the STL File
|
|
|
|
| 572 |
str((mesh_sdf_max - abs(mesh_sdf_min)) / 2))
|
| 573 |
|
| 574 |
if st.button("Generate STL Model"):
|
|
|
|
| 575 |
# Generate the STL File
|
| 576 |
linear_stl = convert_sdf_to_stl(mesh_sdf, threshold_divisor=mesh_threshold_divisor_input)
|
| 577 |
|