From 28131b370e78f7cb872c9949ad2826b87ab867fb Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Sun, 24 Jul 2022 10:29:07 -0300 Subject: [PATCH] Started plug cutout --- monitor/case.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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")