diff --git a/monitor/case.py b/monitor/case.py index 905ad19..ec0a6a1 100644 --- a/monitor/case.py +++ b/monitor/case.py @@ -11,6 +11,10 @@ board_cutout = ( cq.Sketch().trapezoid(55, 50, 90, mode="a").reset().vertices("X") .shell(-shell_t) .edges("|X") .fillet(fillet_s) + # Cutout room for plugs to slide in and be exposed + .faces(">X") + .workplane(centerOption="CenterOfBoundBox") + .center(0,-5) + .placeSketch(plug_cutout) + .cutBlind(-width/2) # Cutout visible screen area from top face .faces(">Z") .workplane(centerOption="CenterOfBoundBox")