From f3ba84e9e67bbc81ef07ab24a731a7dd7398c07f Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Tue, 6 Dec 2022 18:34:30 -0500 Subject: [PATCH] [project_box] Add pull handle to lid --- project_box.scad | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/project_box.scad b/project_box.scad index 2f2297c..1dc860b 100644 --- a/project_box.scad +++ b/project_box.scad @@ -64,13 +64,15 @@ module lid(x, y, z, slot_depth=1.5, wall_width=3, fit_tolerance=0.5) { difference() { union() { lid_base(x, y, z, slot_depth); + // locking tab translate([x / 2 - indent_width / 2 - fit_tolerance, y - wall_width - fit_tolerance, 0]) rotate([0, 90, 0]) cylinder(h=x / 4, r=2*fit_tolerance); } - translate([x / 2 - indent_width / 2 - fit_tolerance, y - wall_width - fit_tolerance, z]) + // pull handle + translate([x / 2 - indent_width / 2 - fit_tolerance, y - (2 * fit_tolerance), 0]) rotate([0, 90, 0]) - cylinder(h=x / 4, r=2*fit_tolerance); + cylinder(h=x / 4, r=3*fit_tolerance); } }