Skip to content

Commit

Permalink
Added WIP boot 3D scan
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeicor committed Nov 27, 2023
1 parent aea13ed commit 9493eb5
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
Binary file added boot.ply
Binary file not shown.
Binary file added boot2.ply
Binary file not shown.
Binary file added boot3.ply
Binary file not shown.
Binary file added boot4.ply
Binary file not shown.
Binary file added boot5.ply
Binary file not shown.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# ================== MODELLING ==================

with BuildPart() as obj:
Box(100*MM, 100*MM, 20*MM)
Box(100*MM, 100*MM, 1*MM)

# ================== SHOWING/EXPORTING ==================

Expand All @@ -29,9 +29,9 @@
tmp_socket.close()
ocp_vscode.reset_show()
ocp_vscode.show_all()
export = False # If the connection fails, export to STL instead
export = False # If the connection fails, export to STL instead
elif 'show_object' in locals():
show_object(obj, 'boot-protector') # type: ignore
show_object(obj, 'boot-protector') # type: ignore
except Exception as ex:
print("Cannot show model, exporting to STL instead (%s)" % ex)

Expand Down

0 comments on commit 9493eb5

Please sign in to comment.