From 7c438e1960d9a91335674733133c407056f379a2 Mon Sep 17 00:00:00 2001 From: daniel watson Date: Fri, 4 Oct 2013 11:12:35 -0700 Subject: [PATCH] remove ziptie and move flange to top --- caster-standoff.scad | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/caster-standoff.scad b/caster-standoff.scad index f4a730d..41208a9 100644 --- a/caster-standoff.scad +++ b/caster-standoff.scad @@ -41,23 +41,16 @@ module nuts(){ translate([-standoff_radius, 0, nut_height/2]) nut(nut_short_side, nut_height);} -module ziptie(){ - translate([-standoff_radius, -ziptie_width/2, 0]) - cube([standoff_radius * 2, ziptie_width, ziptie_height]);} - module caster_standoff(){ difference(){ union(){ cylinder(h = standoff_height, r = standoff_radius); - caster_flange();} - translate([0, 0, -.1]) scale([1, 1, 1.1]) - caster_flange_screws(); - translate([0, 0, caster_flange_height]) - nuts(); - translate([0, 0, standoff_height * 3 / 4]) scale([1.1, 1, 1]) - ziptie(); - rotate([0, 0, 90]) translate([0, 0, standoff_height * 1 / 2]) - scale([1.1, 1, 1]) - ziptie();}} + translate([0, 0, standoff_height - caster_flange_height]) + caster_flange();} + translate([0, 0, standoff_height - caster_flange_screw_length * 1.1 + 0.1]) + scale([1, 1, 1.1]) + caster_flange_screws(); + translate([0, 0, standoff_height - (caster_flange_height + nut_height)]) + nuts();}} caster_standoff(); -- 2.30.2