chiark / gitweb /
filamentclip tuning more
[reprap-play.git] / filamentclip.scad
index 2b8ea361451020cac77ca1b1e4d2e594eb09a882..5af0b52de7b4d5806ad7fa0d517f83e414034281 100644 (file)
@@ -1,8 +1,9 @@
 include <cliphook.scad>
 
-rad=18;
+rad=19;
 h=3.5;
-w=1.5;
+w=2.5;
+teethw=1.5;
 
 looprad=2.5;
 loopw=w;
@@ -12,7 +13,7 @@ fdia=1.77;
 
 d=0.01;
 
-module FilamentClipTeeth(teethw=1.5,
+module FilamentClipTeeth(teethw=teethw,
                         stembendd=0.5, stembendl=7, teethxl=1.5) {
   gapw = fdia-stembendd*2;
   teethbigw = gapw + teethw*2;
@@ -54,14 +55,14 @@ module our_ClipHook(ye){
 }
 
 module FilamentClip() {
-  rotate([0,0,-60]) {
+  rotate([0,0,-70]) {
     translate([0,rad-1.5,0]) {
       rotate([0,0,8])
        our_ClipHook(ye=-1.3);
     }
   }
 
-  rotate([0,0,-30]) {
+  rotate([0,0,-35]) {
     translate([0,rad,0]) {
       rotate([0,0,180])
        our_ClipHook(ye=0.8);
@@ -70,7 +71,7 @@ module FilamentClip() {
 
   linear_extrude(height=h) {
     assign($fn=80) {
-      FlatArc(0,0, rad-w/2,rad+w/2, 80,365);
+      FlatArc(0,0, rad-w/2,rad+w/2, 80,350);
     }
     assign($fn=30) {
       FlatArc(0,rad+looprad+w, looprad,looprad+loopw);
@@ -79,9 +80,9 @@ module FilamentClip() {
 
   for (mir=[0,1]) {
     mirror([mir,0,0])
-      rotate([0,0,-20])
-      translate([rad+w+fdia/2, 0, 0])
-      rotate([0,0,100])
+      rotate([0,0,-40])
+      translate([rad+w*0.3+teethw*0.3+fdia/2, 0, 0])
+      rotate([0,0,95])
       FilamentClipTeeth();
   }
 }