From: daniel watson Date: Mon, 2 Sep 2013 17:25:20 +0000 (-0700) Subject: fix nubin to nubbin X-Git-Url: http://challenge-bot.com/repos/?p=challenge-bot;a=commitdiff_plain;h=28d0154b1c38cac7efc09ba65437ee52c14d8fbe fix nubin to nubbin --- 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);}