From 462ee005dced6384ab655e754dc4a6911493065d Mon Sep 17 00:00:00 2001 From: Daniel Loffgren Date: Mon, 21 Feb 2022 02:01:41 -0800 Subject: [PATCH 1/2] METRIC_BOLT_CAP_DIAMETERS[2] is M2 --- nuts_and_bolts.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuts_and_bolts.scad b/nuts_and_bolts.scad index 95c275a..acb651c 100644 --- a/nuts_and_bolts.scad +++ b/nuts_and_bolts.scad @@ -145,7 +145,7 @@ METRIC_BOLT_CAP_DIAMETERS = [ -1, //0 index is not used but reduces computation -1, - 3.8, + 3.8,//m2 5.50,//m3 7.00,//m4 8.50,//m5 From 7f6f8e20cbaee63742fe2747c2a529538ac9b397 Mon Sep 17 00:00:00 2001 From: Daniel Loffgren Date: Mon, 21 Feb 2022 02:02:09 -0800 Subject: [PATCH 2/2] Add M2 to units --- units.scad | 1 + 1 file changed, 1 insertion(+) diff --git a/units.scad b/units.scad index 61d0d7f..38c427e 100644 --- a/units.scad +++ b/units.scad @@ -17,6 +17,7 @@ X = [1, 0, 0]; Y = [0, 1, 0]; Z = [0, 0, 1]; +M2 = 2*mm; M3 = 3*mm; M4 = 4*mm; M5 = 5*mm;