From 7461ee12dc35c788e87cf009383426bf525f13c7 Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Mon, 31 Jan 2022 22:16:14 +0100 Subject: [PATCH] Fix dimensions --- LEGO_wtolerance.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LEGO_wtolerance.scad b/LEGO_wtolerance.scad index 269b5ca..1880efc 100644 --- a/LEGO_wtolerance.scad +++ b/LEGO_wtolerance.scad @@ -164,8 +164,8 @@ module block( dual_bottom=false ) { post_wall_thickness = (brand == "lego" ? 0.85 : 1); - wall_thickness=(brand == "lego" ? 1.45 - wall_tolerance : 1.5 - wall_tolerance); - stud_diameter=(brand == "lego" ? 4.85 - stud_tolerance: 9.35 - stud_tolerance); + wall_thickness=(brand == "lego" ? 1.5 - wall_tolerance : 1.5 - wall_tolerance); + stud_diameter=(brand == "lego" ? 5 - stud_tolerance: 9.35 - stud_tolerance); hollow_stud_inner_diameter = (brand == "lego" ? 3.1 : 6.7); stud_height=(brand == "lego" ? 1.8 : 4.4); stud_spacing=(brand == "lego" ? 8 : 8 * 2); @@ -175,7 +175,7 @@ module block( cylinder_precision=(brand == "lego" ? 0.1 : 0.05); reinforcing_width = (brand == "lego" ? 0.7 : 1); - spline_length = (brand == "lego" ? 0.25 : 1.7); + spline_length = (brand == "lego" ? 0 : 1.7); spline_thickness = (brand == "lego" ? 0.7 : 1.3); horizontal_hole_diameter = (brand == "lego" ? 4.8 : 4.8 * 2);