From 2c35b2a06e88a3628b1dfe3c6f95d24d44c90673 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 16 Sep 2012 17:51:40 +0100 Subject: [PATCH] splitpin tuning --- splitpin.scad | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/splitpin.scad b/splitpin.scad index 931eb00..b8ecf1d 100644 --- a/splitpin.scad +++ b/splitpin.scad @@ -6,8 +6,8 @@ tau = 6.28318530718; function deg2rad(deg) = deg/360 * tau; function rad2deg(rad) = rad/tau * 360; -module SplitPin(w=1.5, holeminrad=3.5, thick=3, deviationrad=1.0, - mainlen=20, handlerad=10, handlelen=7) { +module SplitPin(w=0.8, holeminrad=2.50, thick=3, deviationrad=1.0, + mainlen=10, handlerad=10, handlelen=7) { spare = holeminrad - deviationrad - w; echo("splitpin spare",spare); %translate([0,mainlen+handlelen,0]) cylinder(r=spare, h=thick); @@ -51,8 +51,8 @@ module SplitPin(w=1.5, holeminrad=3.5, thick=3, deviationrad=1.0, } } -module SplitPinCavity(w=1.5, holeminrad=3.5, thick=3, deviationrad=1.0, - mainlen=20, slop=0.5, insertby = 5) { +module SplitPinCavity(w=0.8, holeminrad=2.50, thick=3, deviationrad=1.0, + mainlen=10, slop=0.5, insertby = 5) { smallgap2 = holeminrad; biggap2 = smallgap2 + deviationrad + slop; toegap2 = w*1.5 + slop; @@ -73,5 +73,5 @@ module SplitPinCavity(w=1.5, holeminrad=3.5, thick=3, deviationrad=1.0, } SplitPin(); -translate([30,0,0]) +translate([0,30,0]) SplitPinCavity(); -- 2.30.2