This seems to be far too large for my driver and bit holder. The handle for mine is roughly 23mm in diameter, but this model seems much larger than that. I can't get the SCAD file to open without errors so I can't edit it either.
This seems to be far too large for my driver and bit holder. The handle for mine is roughly 23mm in diameter, but this model seems much larger than that. I can't get the SCAD file to open without errors so I can't edit it either.
the one function used out of wamber_lib.scad is ChopBottom, which is pretty simple to drop in and use [ugh, sorry for lack of formatting, apparently comments aren't in markdown or any other whitespace-preserving format]
/* Chops the children off at the specified Z offset (default the z=0 plane).
*/
module ChopBottom(z_offset=0, size=1000) {
difference() {
translate([0,0,z_offset])
children();
translate([0, 0, -.5 * size])
cube([size, size, size], center=true);
}
}
I love the design.. changed a few parameters on the openScad file and also printed a lid! (edited)