chiark / gitweb /
scaffold-clamp: wip straphook
[reprap-play.git] / pin-hinge.scad
index 713bd088e392639a354f2c6e7f1fa6aa52d83cb8..81d527e478ad50a5550861ae5cecc98bac011b78 100644 (file)
@@ -2,7 +2,7 @@
 
 include <utils.scad>
 
-$hinge_pin_dia = 0.795 + 0.35;
+$hinge_pin_dia = 0.795 + 0.75;
 $hinge_main_dia = 4.0;
 $hinge_inter_gap = 0.50;
 $hinge_prong_minwidth = 3.0;
@@ -63,8 +63,10 @@ module HingeNegative(l){
 }
 
 test_l = 30;
-test_wb = 10;
-test_h = 10;
+test_wb = 12;
+test_h = 12;
+
+test_face_gap = 0.75;
 
 module Demo(){
   difference(){
@@ -75,9 +77,10 @@ module Demo(){
 
 module TestBody(){
   linextr_x_yz(0, test_l){
-    polygon([[0,0],
-            [-test_wb/2, -test_h],
-            [+test_wb/2, -test_h]]);
+    offset(delta = -test_face_gap/2)
+      polygon([[0,0],
+              [-test_wb/2, -test_h],
+              [+test_wb/2, -test_h]]);
   }
 }