chiark / gitweb /
bike-lipo-box: use keepers for lipo as it takes the whole z space
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 13 Feb 2016 23:25:32 +0000 (23:25 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 13 Feb 2016 23:25:32 +0000 (23:25 +0000)
bike-lipo-box.scad

index 95c95c0e33c57c67d44addd2f527a51420bdd745..e9c8253490a3b7a74b15305af18d1170ba5727aa 100644 (file)
@@ -156,17 +156,10 @@ module Box(){ ////toplevel
        rotate([90,0,90])
        S1930_Positive();
 
-      // straps for lipo
-      for (sx= [ 45, 80, 110 ]) {
-       for (sy= [ 10, 40 ]) {
-         translate([sx - strap_x_tot, sy, 0])
-         difference(){
-           translate([0,0, -0.1])
-             cube([strap_x_tot, strap_pillard, strap_th + strap_over]);
-           translate([strap_pillar, -1, 0])
-             cube([strap_w, strap_pillard+2, strap_th]);
-         }
-       }
+      // keepers for lipo
+      for (kx= [ 40, 80, 120 ]) {
+       translate([kx, 40, -1])
+         cube([10, 5, 8 +1]);
       }
     }