Smaller kbd pillars, fix base splitting

This commit is contained in:
Roberto Alsina 2023-01-26 15:11:16 -03:00
parent d048e19cec
commit 92291013c6
4 changed files with 41291 additions and 41405 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -35,8 +35,8 @@ kbd_pillars = (
(kbd_width - 19, -79.5),
]
)
.circle(4.8, mode="a")
# Holes for M3 threaded inserts
.circle(2.2, mode="a")
# Holes for self-tapping screws
.circle(1, mode="s")
)
@ -157,7 +157,7 @@ def model():
if __name__ == "__main__":
left_cutout = cq.Sketch().polygon(
[(0, 0), (160, 0), (160, -100), (135, -100), (135, -200), (0, -200), (0, 0)],
[(0, 0), (width / 2, 0), (width / 2, -height), (0, -height), (0, 0)],
mode="a",
)
@ -175,13 +175,11 @@ if __name__ == "__main__":
right_cutout = cq.Sketch().polygon(
[
(160, 0),
(width / 2, 0),
(width, 0),
(width, -height),
(135, -height),
(135, -100),
(160, -100),
(160, 0),
(width / 2, -height),
(width / 2, 0),
],
mode="a",
)

File diff suppressed because it is too large Load Diff