chiark / gitweb /
digispark-with-cable: wip progress
[reprap-play.git] / digispark-with-cable.scad
index 1f7034dc03ca096199af1e469503e1b9f548995e..151963a79959ede517c08f81e706c3ed6d2e4a13 100644 (file)
@@ -60,7 +60,7 @@ cover_strap_sz_x = side_wall_th * 3.5;
 // calculated
 
 strap_w = strain_w;
-strap_cutout_z = side_wall_th;
+cover_strap_cutout_z = side_wall_th;
 
 top_top_z = usb_wall_h;
 top_base_z = -board_th;
@@ -96,12 +96,13 @@ module StrapCutouts(y_c, z_top, top_sz_x){
       translate([ -total_side_wall_x, y_c, z_top ])
        cube([ top_sz_x*2,
               strap_w,
-              strap_cutout_z*2 ],
+              cover_strap_cutout_z*2 ],
             center=true);
       translate([ -total_side_wall_x, y_c, bottom_base_z ])
-       cube([ side_wall_th * 0.75,
+       rotate([0, -45, 0])
+       cube([ side_wall_th,
               strap_w,
-              strap_cutout_z*2 ],
+              10 ],
             center=true);
     }
   }