Spaces:
Sleeping
Sleeping
Commit
·
0921946
1
Parent(s):
78f9e27
Updating
Browse files- __pycache__/voxel_to_SDF_to_STL.cpython-39.pyc +0 -0
- app.py +2 -2
__pycache__/voxel_to_SDF_to_STL.cpython-39.pyc
CHANGED
|
Binary files a/__pycache__/voxel_to_SDF_to_STL.cpython-39.pyc and b/__pycache__/voxel_to_SDF_to_STL.cpython-39.pyc differ
|
|
|
app.py
CHANGED
|
@@ -457,7 +457,7 @@ if st.checkbox("Generate Linear Interpolation"):
|
|
| 457 |
"rugged shapes, but they are more accurate. Suggested value for threshold is less than: " +
|
| 458 |
str((linear_sdf_max - abs(linear_sdf_min)) / 2))
|
| 459 |
|
| 460 |
-
if st.
|
| 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)
|
|
@@ -572,7 +572,7 @@ if st.checkbox("Generate Mesh Interpolation"):
|
|
| 572 |
"rugged shapes, but they are more accurate. Suggested value for threshold is less than: " +
|
| 573 |
str((mesh_sdf_max - abs(mesh_sdf_min)) / 2))
|
| 574 |
|
| 575 |
-
if st.
|
| 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)
|
|
|
|
| 457 |
"rugged shapes, but they are more accurate. Suggested value for threshold is less than: " +
|
| 458 |
str((linear_sdf_max - abs(linear_sdf_min)) / 2))
|
| 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)
|
|
|
|
| 572 |
"rugged shapes, but they are more accurate. Suggested value for threshold is less than: " +
|
| 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)
|