From b565c0f7fbfe66430bb42be9d3976f0d8f9aa3a6 Mon Sep 17 00:00:00 2001 From: daniel watson Date: Mon, 2 Sep 2013 14:47:17 -0700 Subject: [PATCH] use default $fn --- 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 4b77fbd..6b58310 100644 --- a/schematic-3d-printable.scad +++ b/schematic-3d-printable.scad @@ -19,13 +19,13 @@ module deck(scale){ cube(deck_dimensions * scale, center = true);} module collar_hole(scale){ - cylinder(h = 5/16 * scale, r = 0.362/2 * scale, $fn = 100);} + cylinder(h = 5/16 * scale, r = 0.362/2 * scale);} module nubbin_hole(scale){ - cylinder(h = 5/16 * scale, r = 0.145/2 * scale, $fn = 100);} + cylinder(h = 5/16 * scale, r = 0.145/2 * scale);} module mounting_screw_hole(scale){ - cylinder(h = 5/16 * scale, r = 0.114/2 * scale, $fn = 100);} + cylinder(h = 5/16 * scale, r = 0.114/2 * scale);} module wheel_mount_reinforcement(scale){ diagonal = sqrt(deck_depth * deck_depth + deck_depth * deck_depth); -- 2.30.2