chiark / gitweb /
filamentclip tuning, for print
[reprap-play.git] / filamentclip.scad
index db8580d0cd532c86bee31d9219d047f417590c44..27e25a91b13cdb97e25c206beec1c2a10521ff41 100644 (file)
@@ -1,8 +1,8 @@
 include <cliphook.scad>
 
-rad=12;
+rad=18;
 h=3.5;
-w=1.0;
+w=1.5;
 
 looprad=2.5;
 loopw=w;
@@ -12,8 +12,8 @@ fdia=1.77;
 
 d=0.01;
 
-module FilamentClipTeeth(based=1.5, basew=4, teethw=0.6,
-                        stembendd=0.5, stembendl=4, teethxl=1) {
+module FilamentClipTeeth(based=1.5, basew=4, teethw=1.5,
+                        stembendd=0.5, stembendl=7, teethxl=1.5) {
   gapw = fdia-stembendd*2;
   teethbigw = gapw + teethw*2;
 
@@ -51,22 +51,32 @@ module FilamentClip() {
   k=1.5;
   g=0.6;
 
-  rotate([0,0,-45]) {
+  rotate([0,0,-55]) {
     translate([0,rad,0]) {
       ClipHook(h=h, w=w, g=0.6, k=k, g=g, ye=-1.3);
+    }
+  }
+
+  rotate([0,0,-30]) {
+    translate([0,rad,0]) {
       rotate([0,0,180]) ClipHook(h=h, w=w, g=g, k=k, ye=0.8);
     }
   }
 
   linear_extrude(height=h) {
     assign($fn=80) {
-      FlatArc(0,0, rad-w/2,rad+w/2, 65,379);
+      FlatArc(0,0, rad-w/2,rad+w/2, 80,372);
     }
     assign($fn=30) {
       FlatArc(0,rad+looprad+w, looprad,looprad+loopw);
     }
   }
+
+  for (rot=[0,180]) {
+    rotate([0,0,rot])
+      translate([rad, 0, 0]) FilamentClipTeeth();
+  }
 }
 
 FilamentClip();
-FilamentClipTeeth();
+