// holder for the magnetic knife bar based on the above clip
-front_w = 6;
-screw_hole = 3;
-bolt_hole = 7;
+front_w = 9;
+screw_hole = 5;
+bolt_hole = 9;
+bolt_depth = 4;
+knifebar_w = 45; // for an alternative design
difference() {
union() {
rotate([-90, 0, 0])
cylinder(r = screw_hole/2, h=infty, $fn = 6);
// bolt hole
- translate([0, front_w/2, body_h/2])
- rotate([-90, 0, 0])
+ translate([0, bolt_depth, body_h/2])
+ rotate([90, 0, 0])
cylinder(r = bolt_hole/2, h=infty, $fn = 6);
}