Bring back missing screen mounting pillar

This commit is contained in:
Roberto Alsina 2022-12-02 10:04:23 -03:00
parent 4386b1c017
commit 29e2464bef
6 changed files with 8466 additions and 1125 deletions

View File

@ -11115,13 +11115,6 @@ solid
vertex -1.185000e+02 -2.227386e+01 -2.651650e+01
endloop
endfacet
facet normal -1.001406e-16 7.071068e-01 -7.071068e-01
outer loop
vertex -1.207154e+02 -2.370077e+01 -2.792927e+01
vertex -1.206142e+02 -2.377593e+01 -2.800442e+01
vertex -1.430100e+02 -2.651000e+01 -3.073850e+01
endloop
endfacet
facet normal -9.330357e-17 7.071068e-01 -7.071068e-01
outer loop
vertex -1.205080e+02 -2.384748e+01 -2.807598e+01
@ -11129,6 +11122,13 @@ solid
vertex -1.206142e+02 -2.377593e+01 -2.800442e+01
endloop
endfacet
facet normal -1.001406e-16 7.071068e-01 -7.071068e-01
outer loop
vertex -1.207154e+02 -2.370077e+01 -2.792927e+01
vertex -1.206142e+02 -2.377593e+01 -2.800442e+01
vertex -1.430100e+02 -2.651000e+01 -3.073850e+01
endloop
endfacet
facet normal -8.621747e-17 7.071068e-01 -7.071068e-01
outer loop
vertex -1.203968e+02 -2.391526e+01 -2.814376e+01

View File

@ -45,10 +45,10 @@ kbd_pillars = (
# Measured from top-left corner OUTSIDE
mounting_pillar_positions = [
(6, -6),
(width - 6, -6),
(width - 6, -40),
(120, -6),
(170, -6),
(width - 6, -6),
(width - 6, -40),
]
mounting_pillars = (

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -38,9 +38,14 @@ board_cutout = cq.Sketch().trapezoid(
kbd_cable_hole = cq.Sketch().trapezoid(15, 5, 90, mode="a").vertices().fillet(1)
# The last mounting pillar is handled specially
x, y = mounting_pillar_positions[-1]
mounting_pillars = (
cq.Sketch()
.polygon([(0, 0), (width, 0), (width, -12), (0, -12), (0, 0)], mode="a")
.polygon(
[(x - 6, y - 6), (x - 6, y + 6), (x + 6, y + 6), (x + 6, y - 6), (x - 6, y - 6)]
)
.push(mounting_pillar_positions)
.circle(ti_radius, mode="s")
)

File diff suppressed because it is too large Load Diff