Adjust screen mount pillars

This commit is contained in:
Roberto Alsina 2023-03-28 11:33:40 -03:00
parent 74a17e04ec
commit 6e594b0b86
8 changed files with 5 additions and 5 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -33,13 +33,13 @@ ti_depth = 6.25
# Measured from top-left corner OUTSIDE
mounting_pillar_positions = [
(6, 6),
(6, 40),
(6, 52),
(120, 6),
(120, 40),
(170, 6),
(170, 40),
(width - 6, 6),
(width - 6, 30),
(120, 52),
(170, 52),
]
screen_pillars.init(mounting_pillar_positions, thickness - shell_t)

Binary file not shown.

View File

@ -42,8 +42,8 @@ board_cutout = cq.Sketch().trapezoid(
kbd_cable_hole = cq.Sketch().trapezoid(20, 9, 90, mode="a").vertices().fillet(1)
# y needs to be inverted because this is the top side
mounting_pillar_positions = [(x, -y) for x, y in mounting_pillar_positions]
# y needs to be inverted because this is the top side, adn there's 2 pillars we don't use
mounting_pillar_positions = [(x, -y) for x, y in mounting_pillar_positions[:-2]]
mounting_pillars = (
cq.Sketch()

Binary file not shown.