Browse Source

Tweaks in screen mount so it has some rounder edges and slightly smaller viewport

main
Roberto Alsina 4 weeks ago
parent
commit
d9f7d7f7a9
  1. BIN
      notebook_nueva/left_screen_mount.stl
  2. BIN
      notebook_nueva/left_side.stl
  3. BIN
      notebook_nueva/model.stl
  4. BIN
      notebook_nueva/right_screen_mount.stl
  5. 9
      notebook_nueva/screen_mount.py
  6. BIN
      notebook_nueva/screen_mount.stl

BIN
notebook_nueva/left_screen_mount.stl

Binary file not shown.

BIN
notebook_nueva/left_side.stl

Binary file not shown.

BIN
notebook_nueva/model.stl

Binary file not shown.

BIN
notebook_nueva/right_screen_mount.stl

Binary file not shown.

9
notebook_nueva/screen_mount.py

@ -17,9 +17,9 @@ height_bottom = 59
thickness = 48 # Will be shorter after construction
# Visible screen size
vis_w = 220
vis_h = 58
viewport_cutout = cq.Sketch().trapezoid(vis_w, vis_h, 90, mode="a")
vis_w = 219
vis_h = 55
viewport_cutout = cq.Sketch().trapezoid(vis_w, vis_h, 90, mode="a").vertices().fillet(2)
# Whole screen size
scr_w = 231
@ -130,6 +130,9 @@ def model():
.center(-width / 2, height_bottom - height / 2)
.placeSketch(mounting_pillars)
.extrude(10)
# Fillet the front edge of the screen case so it looks softer
.edges(">(0, -10, 5)")
.fillet(2)
)

BIN
notebook_nueva/screen_mount.stl

Binary file not shown.
Loading…
Cancel
Save