diff options
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(); |