chiark / gitweb /
scaffold-clamp: wip straphook
[reprap-play.git] / camera-mount.scad
index 38c1016fa7d4b69b334774f3789957b7e5ed9399..fec9096192b3336e7a50ed782f3dc3eb42407db4 100644 (file)
@@ -12,20 +12,17 @@ negative_pitch = inch/negative_tpi;
 negative_chamfer = negative_pitch/2;
 
 module CameraMountThread(l){
-  translate([0,0, midsection]) {
+  rotate([0,180,0])
     english_thread(diameter=negative_dia/inch,
                   threads_per_inch=negative_tpi,
                   leadin=0, internal=true, test=$test,
                   length= (l + inch/19) / inch);
-    translate([0,0, l]) {
-      hull(){
-       translate([0,0, negative_chamfer])
-         cylinder(r= negative_dia/2 + negative_chamfer*2,
-                  h=1);
-       mirror([0,0,1])
-         cylinder(r= negative_dia/2 - negative_chamfer*2,
+  hull(){
+    translate([0,0, negative_chamfer])
+      cylinder(r= negative_dia/2 + negative_chamfer*2,
+              h=1);
+    mirror([0,0,1])
+      cylinder(r= negative_dia/2 - negative_chamfer*2,
                   h= negative_chamfer*3);
-      }
-    }
   }
 }