Skip to content

Commit

Permalink
feet and feet slot need to be smaller
Browse files Browse the repository at this point in the history
else it is to thin and there is small holes when
printing at 0.2 mm layer height.
  • Loading branch information
ptitluc committed Mar 31, 2024
1 parent 45f6590 commit 8b0d96c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions diabolobox.scad
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ module diabolize_fb() {
//
// ***************************************************************************
module foot() {
th_m = 1.2 * th - 0.25;
th_m = 1.1 * th - 0.25;
rotate([180, 0, 0])
translate([0, -th_m, -th_m - dt_height(th_m)])
dove_tail(th_m, th_m);
Expand All @@ -269,20 +269,20 @@ module foot() {
module feet_slots() {
// feet slots
f_off = 1.2 * off;
f_th = 1.2 * th;
f_th = 1.1 * th;
dth = dt_height(f_th);
translate([f_off, 1.5 * f_th - 0.01, dth - 0.01])
translate([f_off, f_th - 0.01, dth - 0.01])
rotate([180, 0, 0])
dove_tail(f_th, 1.5 * f_th);
translate([ow - f_off - f_th, 1.5 * f_th - 0.01, dth - 0.01])
dove_tail(f_th, f_th);
translate([ow - f_off - f_th, f_th - 0.01, dth - 0.01])
rotate([180, 0, 0])
dove_tail(f_th, 1.5 * f_th);
dove_tail(f_th, f_th);
translate([ow - f_off - f_th, od + 0.01, dth - 0.01])
rotate([180, 0, 0])
dove_tail(f_th, 1.5 * f_th);
dove_tail(f_th, f_th);
translate([f_off, od + 0.01, dth - 0.01])
rotate([180, 0, 0])
dove_tail(f_th, 1.5*f_th);
dove_tail(f_th, f_th);
}

// ***************************************************************************
Expand Down

0 comments on commit 8b0d96c

Please sign in to comment.