diff options
author | Jan Huwald <jh@sotun.de> | 2014-02-04 14:14:26 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2014-02-04 14:14:26 (GMT) |
commit | 7d58abe41ab862a2a3f0dbf3a88680c113ddee1d (patch) | |
tree | 252b6843e423ee7ef051004b1e32cf8e9413ae3d /rail.scad | |
parent | 7a57e259ab38d2bf92ac7b1a897637f0ccf82026 (diff) |
add hdd frontal standout
So that hard drives can be grabbed without obstruction of the
connector structures.
Diffstat (limited to 'rail.scad')
-rw-r--r-- | rail.scad | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -2,8 +2,9 @@ include <parameters.scad> module rail() { - cube([rail_thickness, hdd_length, rail_height]); - cube([rail_width, hdd_length, rail_thickness]); + length = hdd_length - hdd_standout; + cube([rail_thickness, length, rail_height]); + cube([rail_width, length, rail_thickness]); } -rail();
\ No newline at end of file +rail(); |