[project_box] Improve the pull-out handle

This commit is contained in:
Correl Roush 2022-12-06 19:16:34 -05:00
parent f3ba84e9e6
commit b1af6c8e0f

View file

@ -70,9 +70,10 @@ module lid(x, y, z, slot_depth=1.5, wall_width=3, fit_tolerance=0.5) {
cylinder(h=x / 4, r=2*fit_tolerance);
}
// pull handle
translate([x / 2 - indent_width / 2 - fit_tolerance, y - (2 * fit_tolerance), 0])
rotate([0, 90, 0])
cylinder(h=x / 4, r=3*fit_tolerance);
translate([x / 2 - indent_width / 2 - fit_tolerance, y - wall_width + fit_tolerance + 0.001, -0.001]) {
cube([indent_width,wall_width - 2 * fit_tolerance,0.6 * z]);
cube([indent_width,2 + wall_width - 2 * fit_tolerance,0.3 * z]);
}
}
}