mirror of
https://github.com/correl/openscad.git
synced 2024-11-14 19:19:34 +00:00
[project_box] Improve the pull-out handle
This commit is contained in:
parent
f3ba84e9e6
commit
b1af6c8e0f
1 changed files with 4 additions and 3 deletions
|
@ -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]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue