Save material, nicer cut, thinner middle
This commit is contained in:
parent
9336d89414
commit
a2bca28f95
@ -30,7 +30,7 @@ display_bottom_margin = display_top_margin # Symmetrical
|
|||||||
|
|
||||||
|
|
||||||
# Threaded insert hole dimensions
|
# Threaded insert hole dimensions
|
||||||
ti_width = 4.5
|
ti_radius = 2.25
|
||||||
ti_depth = 7.5
|
ti_depth = 7.5
|
||||||
|
|
||||||
|
|
||||||
@ -44,27 +44,27 @@ board_cutout = (
|
|||||||
|
|
||||||
segment_breaks_top = (
|
segment_breaks_top = (
|
||||||
cq.Sketch()
|
cq.Sketch()
|
||||||
.rarray(width / 4, length, 2, 1)
|
.rarray(1, length, 1, 1)
|
||||||
.trapezoid(5, 15, 110, mode="a")
|
.trapezoid(width / 3, 35, 110, mode="a")
|
||||||
.reset()
|
.reset()
|
||||||
.vertices()
|
.vertices()
|
||||||
.fillet(2)
|
.fillet(5)
|
||||||
)
|
)
|
||||||
|
|
||||||
segment_breaks_bottom = (
|
segment_breaks_bottom = (
|
||||||
cq.Sketch()
|
cq.Sketch()
|
||||||
.rarray(width / 4, length, 2, 1)
|
.rarray(1, length, 1, 1)
|
||||||
.trapezoid(15, 15, 70, mode="a")
|
.trapezoid(width / 3, 35, 70, mode="a")
|
||||||
.reset()
|
.reset()
|
||||||
.vertices()
|
.vertices()
|
||||||
.fillet(2)
|
.fillet(5)
|
||||||
)
|
)
|
||||||
|
|
||||||
back_reinforcement = (
|
back_reinforcement = (
|
||||||
cq.Sketch().trapezoid(width / 2, 15, 90, mode="a").reset().vertices().fillet(2)
|
cq.Sketch().trapezoid(width / 2, 15, 90, mode="a").reset().vertices().fillet(2)
|
||||||
)
|
)
|
||||||
|
|
||||||
threaded_inserts = cq.Sketch().rarray(width / 8, 0, 4, 1).circle(ti_width, mode="a")
|
threaded_inserts = cq.Sketch().rarray(width / 8, 0, 4, 1).circle(ti_radius, mode="a")
|
||||||
|
|
||||||
# Holder for the screen (other half of the case)
|
# Holder for the screen (other half of the case)
|
||||||
screen_base = (
|
screen_base = (
|
||||||
|
Loading…
Reference in New Issue
Block a user