diff options
author | Jan Huwald <jh@sotun.de> | 2015-02-20 10:03:24 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2015-02-20 10:03:24 (GMT) |
commit | 645f6a493cccc2714678742b1f292446d0c6350e (patch) | |
tree | a49a25c9251b208c5c17b2bad1b6651ead03384b | |
parent | ea6f2638d9a4dd36fa06397d1d8e97fb030fb8f6 (diff) |
change sata power connector form hole to path for cables
-rw-r--r-- | tray.scad | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -14,9 +14,9 @@ H = hdd_height + hrail_height; SW=5; SH=1.5; -// dimensions of the SATA power connector -spc_width=25; -spc_height=8.2; +// width of the SATA power cable (including some extra space for +// navigation) +spc_width=3; support_bar_width = 10; @@ -98,10 +98,16 @@ union() { translate([0, D/4, 0]) ccube([W, D, support_bar_width]); - // hole for SATA power connector and cable + // hole to insert SATA power cables if (power_hole) - translate([-hdd_width/2 + 30, 0]) - ccube([spc_width, D, spc_height]); + translate([-hdd_width/2 + 15, 0, (support_bar_width - spc_width)/2 - 1.5]) { + translate([0, 0, 0]) + ccube([5*spc_width, D, spc_width]); + + translate([-2 * spc_width, 0, hrail_height/4]) + ccube([spc_width, D, hrail_height/2]); + + } // space for rail if (rail) |