From 14780f38c886a9ec2a1271a907049d409eaf6114 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 21 Apr 2025 13:18:25 +0100 Subject: [PATCH] toolbox-inserts: adjust by half a unit Signed-off-by: Ian Jackson --- toolbox-inserts.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/toolbox-inserts.scad b/toolbox-inserts.scad index 7f0860f..57596ed 100644 --- a/toolbox-inserts.scad +++ b/toolbox-inserts.scad @@ -196,9 +196,9 @@ module FullPlate() { ////toplevel linextr(-20, 0) square(1000, center=true); } - for (xi=[-n_x : n_x]) - for (yi=[-n_y : n_y]) - translate(fixing_pitch * [xi, yi, 0]) { + for (xi=[-n_x : n_x + 1]) + for (yi=[-n_y : n_y + 1]) + translate(fixing_pitch * [xi - 0.5, yi - 0.5, 0]) { linextr(-20, -below_plane_z + fixing_head_th) circle(r = fixing_head_d/2); linextr(-20, 20) @@ -215,7 +215,7 @@ module OdAt(x,y) { module OverallDemo() { ////toplevel color("grey") BoxBottomModel(); color("blue") FullPlate(); - color("red") OdAt(-5,-5.5) DriverHandleHolder(); + color("red") OdAt(-5.5,-6) DriverHandleHolder(); } module OverallDemoLidded() { ////toplevel -- 2.30.2