diff --git a/notebook_nueva/left_screen_mount.stl b/notebook_nueva/left_screen_mount.stl index 7a12a63..df485a8 100644 Binary files a/notebook_nueva/left_screen_mount.stl and b/notebook_nueva/left_screen_mount.stl differ diff --git a/notebook_nueva/left_side.stl b/notebook_nueva/left_side.stl index 4a93970..fdce76b 100644 Binary files a/notebook_nueva/left_side.stl and b/notebook_nueva/left_side.stl differ diff --git a/notebook_nueva/model.stl b/notebook_nueva/model.stl index 505f677..0a702c5 100644 Binary files a/notebook_nueva/model.stl and b/notebook_nueva/model.stl differ diff --git a/notebook_nueva/modelo.py b/notebook_nueva/modelo.py index 8a1840a..1fe73f6 100644 --- a/notebook_nueva/modelo.py +++ b/notebook_nueva/modelo.py @@ -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) diff --git a/notebook_nueva/right_screen_mount.stl b/notebook_nueva/right_screen_mount.stl index d674bcc..aede4c4 100644 Binary files a/notebook_nueva/right_screen_mount.stl and b/notebook_nueva/right_screen_mount.stl differ diff --git a/notebook_nueva/right_side.stl b/notebook_nueva/right_side.stl index 003faf2..61aee78 100644 Binary files a/notebook_nueva/right_side.stl and b/notebook_nueva/right_side.stl differ diff --git a/notebook_nueva/screen_mount.py b/notebook_nueva/screen_mount.py index ef9c1d5..4406cce 100644 --- a/notebook_nueva/screen_mount.py +++ b/notebook_nueva/screen_mount.py @@ -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() diff --git a/notebook_nueva/screen_mount.stl b/notebook_nueva/screen_mount.stl index 8dbaaa3..f61fcf9 100644 Binary files a/notebook_nueva/screen_mount.stl and b/notebook_nueva/screen_mount.stl differ