From 2e4c4c37efb1322456848504d321695b5d2449c3 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 21 Apr 2025 19:23:21 +0100 Subject: [PATCH] toolbox-inserts: plates Signed-off-by: Ian Jackson --- toolbox-inserts.scad | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/toolbox-inserts.scad b/toolbox-inserts.scad index b9e949f..d32e4a0 100644 --- a/toolbox-inserts.scad +++ b/toolbox-inserts.scad @@ -28,6 +28,7 @@ well_surround_wall = 2.5; well_stiffening_height = 5; plate_unholed_edge_w = 3; +plate_mid_gap = 0.5; driver_handle_shaft_l = 68.2 + 0.75; driver_handle_total_l = 152.8 + 0.75; @@ -227,6 +228,21 @@ module FullPlate() { ////toplevel } } +module OnePlate(mx) { + intersection(){ + FullPlate(); + mirror([ mx, 0,0 ]) + linextr_x_yz(plate_mid_gap/2, box_x) + square(1000, center=true); + } +} +module LeftPlate() { ////toplevel + OnePlate(1); +} +module RightPlate() { ////toplevel + OnePlate(0); +} + module OdAt(x,y) { translate(fixing_pitch * [x,y,0]) children(0); -- 2.30.2