From: Ian Jackson Date: Sat, 13 Feb 2016 23:25:32 +0000 (+0000) Subject: bike-lipo-box: use keepers for lipo as it takes the whole z space X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=67b79108;hp=80c76e5a86a6dbb4f3e1a7acf689fc672c61233c bike-lipo-box: use keepers for lipo as it takes the whole z space --- diff --git a/bike-lipo-box.scad b/bike-lipo-box.scad index 95c95c0..e9c8253 100644 --- a/bike-lipo-box.scad +++ b/bike-lipo-box.scad @@ -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]); } }