From: daniel watson Date: Sun, 8 Sep 2013 16:29:43 +0000 (-0700) Subject: comment where the measurements come from X-Git-Url: http://challenge-bot.com/repos/?p=challenge-bot;a=commitdiff_plain;h=17e3b87c0a96e5ad1aff6cead7213038820f7558 comment where the measurements come from --- diff --git a/caster-standoff.scad b/caster-standoff.scad index 90317c8..f61ac3a 100644 --- a/caster-standoff.scad +++ b/caster-standoff.scad @@ -7,9 +7,9 @@ $fn = 100; module ball_screws(){ - between = 14.732; - screw_radius = 2.286/2; - screw_length = 20; + between = 14.732; // 0.580 inches + screw_radius = 2.286/2; // 0.090 inches + screw_length = 15; // i made this up translate([between/2, 0, 0]) cylinder(h = screw_length, r = screw_radius); translate([-between/2, 0, 0]) cylinder(h = screw_length, r = screw_radius);}