chiark / gitweb /
filamentspool explicit doveclipheight
[reprap-play.git] / filamentspool.scad
index 8dbf1bf3631764632bb07409907807940ef2d150..28e76fca5e3521f26749050fa5a604f77393c13e 100644 (file)
@@ -1,4 +1,6 @@
 
+fdia=1.75;
+
 slop=0.5;
 bigslop=slop*2;
 
@@ -12,11 +14,25 @@ ratchettoothslope=0.75;
 overlap=0.5;
 cupbigrad=35;
 
+doveclipheight = 10;
+
+teethh=3;
+teethgapx=4+fdia;
+
 prongstalkxwidth=3;
 
 stalklength=40;
 overclipcupgap=5;
-overclipheight=15;
+overclipdepth=15;
+overcliproundr=2.0;
+overclipthick=0.5;
+
+wingspoke=3;
+wingsize=6;
+wingthick=3;
+
+overclipsmaller=-1.0;
+overclipbigger=2.0;
 
 armendwallthick=2.5;
 armendbasethick=1.2;
@@ -25,6 +41,7 @@ ratchetpawl=ratchetstep-ratchettooth-bigslop*2;
 
 include <doveclip.scad>
 include <cliphook.scad>
+include <filamentteeth.scad>
 
 channelwidth = prongthick + slop;
 channeldepth = prongwidth + ratchettoothheight;
@@ -32,8 +49,6 @@ totalwidth = armendwallthick*2 + channelwidth;
 totalheight = channeldepth + armendbasethick;
 stalkwidth = prongwidth + prongstalkxwidth;
 
-doveclipheight = totalheight;
-
 module ArmEnd(length=120){
   translate([ratchettoothsmoothr, channelwidth/2, -armendbasethick]) {
     rotate([0,0,-90])
@@ -96,7 +111,8 @@ module FilamentCup() {
   FilamentCupHandle();
 
   dx = cupbigrad + prongwidth;
-  dy = cupbigrad + prongwidth + overclipcupgap;
+  gapy = prongwidth;
+  dy = cupbigrad + gapy + overclipcupgap;
 
   translate([dx, dy, 0])
     FilamentCupCup();
@@ -105,15 +121,50 @@ module FilamentCup() {
 
   midrad = cupbigrad + prongwidth/2;
 
-  propshift = stalklength - overclipheight - prongthick;
+  propshift = stalklength - overclipdepth - prongthick;
   proptaken = propshift;
   echo(cupbigrad, dx, midrad, propshift, proptaken);
 
-  translate([propshift, -1, 0])
+  translate([propshift, -1, 0]) {
     cube([prongwidth,
          dy - sqrt(midrad*midrad - proptaken*proptaken),
          prongthick]);
+  }
+  translate([stalklength + overclipdepth, gapy, 0])
+    rotate([0,0,-(10 + fdia)])
+    FilamentTeeth(fdia=fdia, h=teethh);
+}
+
+module CupSecuringClipSolid(w,d,h1,h2){
+  rotate([0,-90,0]) translate([0,-h1/2,-w/2]) linear_extrude(height=w) {
+    polygon(points=[[0,0], [d,0], [d,h2], [0,h1]]);
+  }
+}
+
+module CupSecuringClipSolidSmooth(xrad=0, xdepth=0){
+  hbase = totalheight + prongstalkxwidth - overcliproundr*2;
+  minkowski(){
+    CupSecuringClipSolid(w=totalwidth,
+                        d=overclipdepth + xdepth,
+                        h1=hbase - overclipsmaller,
+                        h2=hbase + overclipbigger);
+    cylinder($fn=20, h=0.01, r=overcliproundr+xrad);
+  }
+}
+
+module CupSecuringClip(){
+  wingswidth = wingspoke*2 + overclipthick*2 + overcliproundr*2 + totalwidth;
+  difference(){
+    union(){
+      CupSecuringClipSolidSmooth(xrad=overclipthick, xdepth=0);
+      translate([-wingswidth/2, -wingsize/2, 0])
+       cube([wingswidth, wingsize, wingthick]);
+    }
+    translate([0,0,-0.1])
+      CupSecuringClipSolidSmooth(xrad=0, xdepth=5);
+  }
 }
 
 //ArmEnd();
-FilamentCup();
+//FilamentCup();
+//CupSecuringClip();