From: Ian Jackson Date: Mon, 21 Apr 2025 18:23:21 +0000 (+0100) Subject: toolbox-inserts: plates X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=2e4c4c37efb1322456848504d321695b5d2449c3;p=reprap-play.git toolbox-inserts: plates Signed-off-by: Ian Jackson --- 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);