Thicker walls

This commit is contained in:
Roberto Alsina 2022-11-28 12:19:56 -03:00
parent db5e874d91
commit f549fb32b0
1 changed files with 3 additions and 2 deletions

View File

@ -47,6 +47,7 @@ def model():
.workplane()
.tag("mid_height")
.box(width, 59, 62)
# The screen goes at a 45 degree angle
.faces(">Z")
.transformed(rotate=(45, 0, 0))
# Move the screen "lower" so it doesn't interfere
@ -75,12 +76,12 @@ def model():
.cutBlind(100)
# Make it hollow
.faces("<Z")
.shell(-2)
.shell(-2.5)
# Cut hole for the screen board and cables
.workplaneFromTagged("slanted")
.workplane(offset=-scr_thickness, centerOption="CenterOfBoundBox")
.placeSketch(board_cutout)
.cutBlind(-5)
.cutBlind(-6)
# Fillet top of the object
.edges(">Z and |X")
.fillet(5)