From 7124792e8e7abc5e8c9a923aca0ed8cfb50c91c1 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 4 May 2025 23:56:45 +0100 Subject: [PATCH] toolbox-inserts: BoxModelTest halves Signed-off-by: Ian Jackson --- toolbox-inserts.scad | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/toolbox-inserts.scad b/toolbox-inserts.scad index 3e3679f..b2d86d5 100644 --- a/toolbox-inserts.scad +++ b/toolbox-inserts.scad @@ -423,9 +423,29 @@ module RailMountTest(){ ////toplevel } module BoxModelTest(){ ////toplevel - linextr(0, 1) { + h = 0.5; + linextr(0, h + box_edge_z_hindent) { BoxCavityEdgeModelPlan(); } + linextr(0, h) { + intersection(){ + BoxCavityModelMainPlan(); + union(){ + for (m=[0,1]) { + mirror([m, 0]) + for (x= [ 10 : 50: 300 ]) + translate([x, 0]) + square([5, 200], center=true); + } + } + } + } +} +module BoxModelHalfTestPrint(){ ////toplevel + intersection(){ + BoxModelTest(); + PlateSelect(false); + } } module OdAt(x,y) { -- 2.30.2