From: Ian Jackson Date: Sun, 16 Sep 2012 02:23:33 +0000 (+0100) Subject: doveclip fix depth X-Git-Tag: filamentspool-v2-release~837 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=20acb3fe67abe696b31ff6595179a3fcab5481cc doveclip fix depth --- diff --git a/doveclip.scad b/doveclip.scad index 589db5e..b3e80a5 100644 --- a/doveclip.scad +++ b/doveclip.scad @@ -32,8 +32,8 @@ module DoveClipPin(h=height) { } } -function DoveClip_depth(baseextend) = - basethick + nomrad*2 + toothheight + baseextend; +function DoveClip_depth() = + basethick + nomrad*2 + toothheight; function DoveClip_width() = nomrad*2 + jawthick*2 + toothgap; @@ -71,6 +71,6 @@ module DoveClipPairBase(baseextend=0.1, h=7) { module DoveClipPairSane(baseextend=0, h=7) { rotate([0,0,90]) - translate([0, DoveClip_depth(baseextend=0), 0]) + translate([0, DoveClip_depth(), 0]) DoveClipPairBase(baseextend=baseextend, h=h); }