From 28d0154b1c38cac7efc09ba65437ee52c14d8fbe Mon Sep 17 00:00:00 2001 From: daniel watson Date: Mon, 2 Sep 2013 10:25:20 -0700 Subject: [PATCH] fix nubin to nubbin --- schematic-3d-printable.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/schematic-3d-printable.scad b/schematic-3d-printable.scad index 5a2d4e4..cf04693 100644 --- a/schematic-3d-printable.scad +++ b/schematic-3d-printable.scad @@ -18,8 +18,8 @@ module deck(scale){ module collar_hole(scale){ cylinder(h = 5/16 * scale, r = 0.362/2 * scale, $fn = 100);} -module nubin_hole(scale){ - cylinder(h = 5/16 * scale, r = 0.145/2 * scale, $fn = 100);} +module nubbin_hole(scale){ + cylinder(h = 5/16 * scale, r = 0.145/2 * scale, $fn = 100);} module mounting_screw_hole(scale){ cylinder(h = 5/16 * scale, r = 0.114/2 * scale, $fn = 100);} @@ -32,7 +32,7 @@ module wheel_mount(scale){ collar_hole(scale);} // nubbin hole translate([0.5 + 0.875 - 0.425, 0.938, -1/16] * scale){ - nubin_hole(scale);} + nubbin_hole(scale);} // mounting screw hole translate([0.5 + 1.213 - 0.425, 0.938 - 0.687/2, -1/16] * scale){ mounting_screw_hole(scale);} -- 2.30.2