chiark / gitweb /
doveclip fix depth
[reprap-play.git] / doveclip.scad
index 589db5e5094d1df518365572d0e34a5a74c677a6..b3e80a5b42fc21394b6531c4c92010b12ba045c0 100644 (file)
@@ -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);
 }