From: Ian Jackson Date: Sun, 9 Jun 2013 16:47:15 +0000 (+0100) Subject: belt-slot-cut-jig: attach base side now thinner X-Git-Tag: filamentspool-v2-release~506 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=de3fff538415fed77212c8906c6685243e4a0dc0 belt-slot-cut-jig: attach base side now thinner --- diff --git a/belt-slot-cut-jig.scad b/belt-slot-cut-jig.scad index a0d85f7..aa0f632 100644 --- a/belt-slot-cut-jig.scad +++ b/belt-slot-cut-jig.scad @@ -62,22 +62,22 @@ module CrewPunch(){ } module PunchHolder(){ + offset = holder_attach_xsz + holder_min_wall; difference(){ - cube([holder_xsz, holder_ysz, holder_block_zsz]); + translate([0,offset,0]) + cube([holder_xsz, holder_ysz - offset, holder_block_zsz]); translate([crewpunch_biggest_shape[2][1] + holder_min_wall, crewpunch_biggest_shape[1][0] + holder_front_wall, -crewpunch_smallest_shape[0]]) CrewPunch(); } - translate([0,0,holder_block_zsz]){ - difference(){ - translate([holder_xsz/2 - holder_attach_xsz/2, 0, -1]) - cube([holder_attach_xsz, - attach_ysz, - holder_ctie_thick + holder_attach_roof + 1]); - translate([-30, holder_attach_walls, 0.1]) - cube([60, holder_ctie_width, holder_ctie_thick]); - } + difference(){ + translate([holder_xsz/2 - holder_attach_xsz/2, 0, 0]) + cube([holder_attach_xsz, + attach_ysz, + holder_block_zsz + holder_ctie_thick + holder_attach_roof + 1]); + translate([-30, holder_attach_walls, holder_block_zsz + 0.1]) + cube([60, holder_ctie_width, holder_ctie_thick]); } }