From d7e8f539b7f72acb2dbc4d7f2a123e77eeaf80f8 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 21 Apr 2025 11:23:00 +0100 Subject: [PATCH] toolbox-inserts: wip overall Signed-off-by: Ian Jackson --- toolbox-inserts.scad | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/toolbox-inserts.scad b/toolbox-inserts.scad index fce7277..465f9ce 100644 --- a/toolbox-inserts.scad +++ b/toolbox-inserts.scad @@ -10,6 +10,7 @@ box_edge_z_hindent = 0.5; box_edge_width = 10; below_plane_z = 4.5; +fixing_pitch = 10; well_surround_wall = 2.5; well_stiffening_height = 5; @@ -127,3 +128,13 @@ module BoxBottomModel() { ////toplevel BoxCavityModel(); } } + +module OdAt(x,y) { + translate(fixing_pitch * [x,y,0]) + children(0); +} + +module OverallDemo() { ////toplevel + color("grey") BoxBottomModel(); + color("red") OdAt(-5,-5) DriverHandleHolder(); +} -- 2.30.2