From 1a5b288b1afb4e0e0395a85d3ec9807e97fd54c8 Mon Sep 17 00:00:00 2001 From: daniel watson Date: Sun, 8 Apr 2018 20:27:26 -0700 Subject: [PATCH] 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 --- place-value-manipulative.scad | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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)]) { -- 2.30.2