From: daniel watson Date: Mon, 28 Oct 2013 20:43:06 +0000 (-0700) Subject: break caster-standoff into 2 pieces for printing X-Git-Url: http://challenge-bot.com/repos/?p=challenge-bot;a=commitdiff_plain;h=13d2458d4b938f3695fef00958325cbe1416b137 break caster-standoff into 2 pieces for printing the 2 printed pieces can be glued together to assemble the final standoff. the tip of the bottom half has been removed to leave room for glue. --- diff --git a/caster-standoff.scad b/caster-standoff.scad index ce84d25..21e9fca 100644 --- a/caster-standoff.scad +++ b/caster-standoff.scad @@ -92,4 +92,23 @@ module caster_standoff(){ rotate([0, 0, 45 + 90 * ii]) deck_flange_reinforcement();}} -caster_standoff(); +module caster_top_half(){ + difference(){ + caster_standoff(); + cylinder(r1 = deck_flange_radius * 4 / 3, + r2 = 0, + h = standoff_height * 3 / 4);}} + +module caster_bottom_half (){ + intersection (){ + caster_standoff(); + cylinder(r1 = deck_flange_radius * 4 / 3, + r2 = 0, + h = standoff_height * 3 / 4);}} + +translate([0, deck_flange_radius + standoff_radius + 1, standoff_height]){ + rotate([0, 180, 0]){ + caster_top_half();}} +difference(){ + caster_bottom_half(); + translate([0, 0, standoff_height * 3 / 4 - 1]) cylinder(r = 2, h = 2);}