chiark / gitweb /
filamenttrestle Trestle adjust pin holes
[reprap-play.git] / filamenttrestle.scad
index b0740935ac65192dc66ebd8728ca013bf1605ff8..58e58cbce376f80528986a29fd7c8f23d8cf4213 100644 (file)
@@ -1,8 +1,8 @@
 // -*- C -*-
 
-spoolwidth = 80; // fixme needs to be measured
-spoolinnerrad = 20; // fixme needs to be checked
-spoolouterrad = 60; // fixme needs to be checked
+spoolwidth = 88.0;
+spoolinnerrad = 39.8 / 2;
+spoolouterrad = spoolinnerrad + 61.5;
 
 include <doveclip.scad>
 include <axlepin.scad>
@@ -44,7 +44,7 @@ topblockbasedepth = 5;
 pinbasew = 5.0;
 pinminh = 1.5;
 pinmaxh = 4.5;
-pindh = 0.50;
+pindh = 1.0;
 pindwidth = 0.75;
 
 pintaperlen = plugwmax * 0.85;
@@ -140,7 +140,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 +155,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();
@@ -229,13 +229,17 @@ module HubEnd(){ ////toplevel
 }
 
 
-module TestKit(){ ////toplevel
-  translate([60,0,0]) mirror([1,0,0]) Pin();
-  translate([60,15,0]) mirror([1,0,0]) Pin();
-  translate([0,40,0]) intersection(){
+module TestTrestle(){ ////toplevel
+  intersection(){
     Trestle();
     translate([-50,-10,-1]) cube([100,100,100]);
   }
+}
+
+module TestKit(){ ////toplevel
+  translate([60,0,0]) mirror([1,0,0]) Pin();
+  translate([60,15,0]) mirror([1,0,0]) Pin();
+  translate([0,40,0]) TestTrestle();
   intersection(){
     translate([-60,10,0]) Bar();
     cube(50,center=true);