chiark / gitweb /
rpi-mount: copy from other repo
[reprap-play.git] / startech-dell-usb-cable-retainer.scad
index d7ff632524f41cdebcba214d26f4f4f0d3c7d14f..122f76c3740501987343c1f3397f50a45133f9aa 100644 (file)
@@ -3,16 +3,16 @@
 include <utils.scad>
 
 body_depth = 40.15 + 4;
-body_height = 16.78 + 0.75;
+body_height = 16.78 + 0.50;
 
 back_round_depth = 2.0;
 back_round_rad = 8.0;
-back_above_height = 3.0;
+back_above_height = 5.3;
 back_thick = 3.0;
 
-conn_thick = 6.42 + 2.0;
+conn_thick = 6.42 + 2.25;
 wire_thick = 6.00 + 0.75;
-total_depth = 63.82 - 2.0;
+total_depth = 63.82 - 1.0;
 
 body_front_overlap = 3;
 
@@ -32,6 +32,8 @@ epp1 = [ 0, -conn_thick/2 ];
 epp2 = epp1 + [ -body_front_overlap, 0 ];
 epp3 = [ +body_depth -total_depth, epp2[1] ];
 epp4 = [ epp3[0], +conn_thick/2 +prong_higher ];
+epp4a = epp4 + prong_higher * [0,-1];
+epp4b = epp4 + prong_higher * [1,0];
 epp5 = epp4 + [ -prong_depth, 0 ];
 epp6 = [ epp5[0], epp0[1] -base_thick ];
 epp7 = [ epp2[0], epp6[1] ];
@@ -48,7 +50,8 @@ module MainElevation(){
   polygon([epp0,
           epp1,
           epp3,
-          epp4,
+          epp4a,
+          epp4b,
           epp5,
           epp6,
           epp8,
@@ -75,6 +78,10 @@ module Retainer(){
   }
 }
 
+module RetainerPrint(){
+  rotate([0,0,180]) Retainer();
+}
+
 //MainElevation();
 
-Retainer();
+RetainerPrint();