chiark / gitweb /
powerbank-bike-clamp: rotate (comment, format, nfc)
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 5 Feb 2021 23:58:17 +0000 (23:58 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 7 Feb 2021 23:03:42 +0000 (23:03 +0000)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
powerbank-bike-clamp.scad

index 4ad3ac7198d57790cb3d0706ec134a18f86073ae..18e338d574712700a6bb0075a9d71b117fffb911 100644 (file)
@@ -183,20 +183,23 @@ module PowerBankHolderTest(){ ////toplevel
 }
 
 module TubeClampLeft() { ////toplevel
-  rotate([0,0,180])
-  difference(){
-    SomeClamp(true)
-      TubeClampLeftPlan();
-
-    translate([0, screw_y, 0]) {
-      linextr_x_yz(-(clamp_gap/2 + screw_nut_th), 0)
-       square([screw_nut_across,
-               screw_nut_across / cos(30) + bridge_slop*2],
-              center=true);
-
-      linextr_x_yz(-main_r, -main_r + screw_head_h)
-       square([screw_head, screw_head + bridge_slop*2],
-              center=true);
+  // We want this to print with the recess overhand to the right
+  // where the workpiece cooling fan is
+  rotate([0,0,180]){
+    difference(){
+      SomeClamp(true)
+       TubeClampLeftPlan();
+
+      translate([0, screw_y, 0]) {
+       linextr_x_yz(-(clamp_gap/2 + screw_nut_th), 0)
+         square([screw_nut_across,
+                 screw_nut_across / cos(30) + bridge_slop*2],
+                center=true);
+
+       linextr_x_yz(-main_r, -main_r + screw_head_h)
+         square([screw_head, screw_head + bridge_slop*2],
+                center=true);
+      }
     }
   }
 }