From: daniel watson Date: Mon, 9 Apr 2018 03:27:26 +0000 (-0700) Subject: tighten snap-fit X-Git-Url: http://challenge-bot.com/repos/?p=ozzloy%40gmail.com%2F3d-printables;a=commitdiff_plain;h=1a5b288b1afb4e0e0395a85d3ec9807e97fd54c8 tighten snap-fit after printing and fitting together, the pieces seem a little too loose, so hopefully this amount of tighten will make them fit better --- diff --git a/place-value-manipulative.scad b/place-value-manipulative.scad index 800e6a9..f372db1 100644 --- a/place-value-manipulative.scad +++ b/place-value-manipulative.scad @@ -49,7 +49,7 @@ module ones_place() { linear_extrude(height = side_length) { round_outside_corners(corner_radius) { square(side_length); } } - translate([side_length / 2, -0.1, -0.1]) { + translate([side_length / 2, -fudge, -fudge]) { connector_base(connector_thickness); } translate([side_length / 2, side_length - connector_thickness + fudge, @@ -57,12 +57,12 @@ module ones_place() { connector_base(connector_thickness); } } translate([side_length / 2, 0, - side_length - 3 * fudge]) { - connector_base(connector_thickness - 3 * fudge); } + side_length - 2 * fudge]) { + connector_base(connector_thickness - 2 * fudge); } translate([side_length / 2, - side_length - connector_thickness + 3 * fudge, - side_length - 3 * fudge]) { - connector_base(connector_thickness - 3 * fudge); } } + side_length - connector_thickness + 2 * fudge, + side_length - 2 * fudge]) { + connector_base(connector_thickness - 2 * fudge); } } module tens_place() { for(ones_index = [0 : (10 - 1)]) {