chiark / gitweb /
pandemic-counter: adjust L
[reprap-play.git] / filamenttrestle.scad
index b0740935ac65192dc66ebd8728ca013bf1605ff8..376a1ae202903216dc8d871102147f74f7b30d46 100644 (file)
@@ -1,8 +1,9 @@
 // -*- C -*-
 
-spoolwidth = 80; // fixme needs to be measured
-spoolinnerrad = 20; // fixme needs to be checked
-spoolouterrad = 60; // fixme needs to be checked
+spoolinnerdia = 32;
+spoolwidth = 88.0;
+spoolinnerrad = (spoolinnerdia - 0.2) / 2;
+spoolouterrad = spoolinnerrad + 61.5;
 
 include <doveclip.scad>
 include <axlepin.scad>
@@ -41,14 +42,14 @@ trestleplugd = 1;
 topblockthick = 3;
 topblockbasedepth = 5;
 
-pinbasew = 5.0;
-pinminh = 1.5;
-pinmaxh = 4.5;
-pindh = 0.50;
-pindwidth = 0.75;
+pinbasew = 4.0;
+pinminh = 1.0;
+pinmaxh = 3.5;
+pindh = 1.75;
+pindwidth = 1.75;
 
-pintaperlen = plugwmax * 0.85;
-pinstraightlen = 17.5;
+pintaperlen = 20;
+pinstraightlen = 30-pintaperlen;
 
 spoolouterpad = AxlePin_holerad()*2 * 1.5;
 spoolbarlen = spoolwidth +
@@ -140,7 +141,7 @@ module Trestle(){ ////toplevel
       translate([-topblockw/2, -topblockbasedepth, 0])
        cube([topblockw,
              topblockbasedepth + plugh + topblockthick
-             + (pinmaxh - pinminh)*0.5 + pindh,
+             + (pinmaxh - pinminh)*0.5,
              plugl]);
 
       translate([-trestlebase/2, -trestleheight, 0])
@@ -155,7 +156,7 @@ module Trestle(){ ////toplevel
     for (rot=[0,180]) {
       translate([0,0,plugl/2]) rotate([0,rot,0]) translate([0,0,-plugl/2]) {
        translate([0,
-                  plugh + pindh - (pinmaxh - pinminh)*0.75,
+                  plugh - (pinmaxh - pinminh)*1.00,
                   (plugl - pinholebasew*2)/3]) {
          translate([-(topblockw*0.25+1), 0, pinholebasew/2])
            rotate([-90,0,0]) %Pin();
@@ -240,8 +241,8 @@ module TestKit(){ ////toplevel
     translate([-60,10,0]) Bar();
     cube(50,center=true);
   }
-  translate([50,40, AxlePin_zoffset()]) FtAxlePin();
-  translate([0,-20,0]) AxleWasher();
+  %translate([50,40, AxlePin_zoffset()]) FtAxlePin();
+  %translate([0,-20,0]) AxleWasher();
 }
 
 module DemoSpool(){