Skip to content

Commit 8b0d96c

Browse files
committed
feet and feet slot need to be smaller
else it is to thin and there is small holes when printing at 0.2 mm layer height.
1 parent 45f6590 commit 8b0d96c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

diabolobox.scad

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ module diabolize_fb() {
259259
//
260260
// ***************************************************************************
261261
module foot() {
262-
th_m = 1.2 * th - 0.25;
262+
th_m = 1.1 * th - 0.25;
263263
rotate([180, 0, 0])
264264
translate([0, -th_m, -th_m - dt_height(th_m)])
265265
dove_tail(th_m, th_m);
@@ -269,20 +269,20 @@ module foot() {
269269
module feet_slots() {
270270
// feet slots
271271
f_off = 1.2 * off;
272-
f_th = 1.2 * th;
272+
f_th = 1.1 * th;
273273
dth = dt_height(f_th);
274-
translate([f_off, 1.5 * f_th - 0.01, dth - 0.01])
274+
translate([f_off, f_th - 0.01, dth - 0.01])
275275
rotate([180, 0, 0])
276-
dove_tail(f_th, 1.5 * f_th);
277-
translate([ow - f_off - f_th, 1.5 * f_th - 0.01, dth - 0.01])
276+
dove_tail(f_th, f_th);
277+
translate([ow - f_off - f_th, f_th - 0.01, dth - 0.01])
278278
rotate([180, 0, 0])
279-
dove_tail(f_th, 1.5 * f_th);
279+
dove_tail(f_th, f_th);
280280
translate([ow - f_off - f_th, od + 0.01, dth - 0.01])
281281
rotate([180, 0, 0])
282-
dove_tail(f_th, 1.5 * f_th);
282+
dove_tail(f_th, f_th);
283283
translate([f_off, od + 0.01, dth - 0.01])
284284
rotate([180, 0, 0])
285-
dove_tail(f_th, 1.5*f_th);
285+
dove_tail(f_th, f_th);
286286
}
287287

288288
// ***************************************************************************

0 commit comments

Comments
 (0)