diff options
Diffstat (limited to 'full_model.scad')
-rw-r--r-- | full_model.scad | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/full_model.scad b/full_model.scad index aec1780..7f139d4 100644 --- a/full_model.scad +++ b/full_model.scad @@ -1,5 +1,6 @@ include <parameters.scad> +use <connector_back.scad> use <connector_front.scad> use <hdd.scad> use <rail.scad> @@ -15,7 +16,7 @@ for (x = [0:num_hdd_x]) for (y = [0:num_hdd_y-1]) translate([bar_thickness/2 + x*tray_width, 0, y*tray_height]) { // front connector - rand_color([0.0, 0.8, 0.0], x, y) translate([bar_thickness/2, 0, 0]) + rand_color([0.0, 0.8, 0.0], x, y) front_connector( border_left = x == 0, border_right = x == num_hdd_x, @@ -24,6 +25,8 @@ translate([bar_thickness/2 + x*tray_width, 0, y*tray_height]) { ); // TODO: back connector + translate([0, hdd_length - hdd_standout - bar_thickness, 0]) + back_connector(); // internal elements (that have nothing right of the last hdd column) if (x != num_hdd_x) { |