From 4b8ce9897c7b1b889d02f85a2befb01bf9dfca76 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 27 May 2025 22:21:08 +0100 Subject: [PATCH] toolbox-inserts: UniversalJoint: wip, but it's concave Signed-off-by: Ian Jackson --- toolbox-inserts.scad | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/toolbox-inserts.scad b/toolbox-inserts.scad index 143735f..52f8ec7 100644 --- a/toolbox-inserts.scad +++ b/toolbox-inserts.scad @@ -60,6 +60,7 @@ ratchet_handle_shaft_main_d = 10.0; universal_joint_main_len = 30; // XXXX universal_joint_d_end = 14.0; universal_joint_d_fat = 14.6; +universal_joint_deeper = 3; bit_pitch_x = 25.4 * 2 / 5; bit_pitch_y = 25.4 * 3 / 4; @@ -530,11 +531,14 @@ module UniversalJointPositive() { ////toplevel } module UniversalJointHolder() { ////toplevel WellSurround( - half_height = universal_joint_d_fat/2, + half_height = universal_joint_d_fat/2 - universal_joint_deeper, gaps = [], fixings = [] ) { - UniversalJointPositive(); + for (dz = [0, ]) { + translate([0, 0, -universal_joint_deeper]) + UniversalJointPositive(); + } } } -- 2.30.2