diff options
author | Jan Huwald <jh@sotun.de> | 2014-02-05 09:28:08 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2014-02-05 09:28:08 (GMT) |
commit | 9b4a78808bd94cba3fa794c664e2690a4eb96f8b (patch) | |
tree | cbfd291a7a761cf3c9e7d6f5a1bba66dc51672c9 | |
parent | 15cb9b73002b6b41b805743114100ee52a348f5b (diff) |
full model: print total size
-rw-r--r-- | full_model.scad | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/full_model.scad b/full_model.scad index dc9a523..e8eb6aa 100644 --- a/full_model.scad +++ b/full_model.scad @@ -46,3 +46,6 @@ for (y = [0:num_hdd_y-1]) translate([bar_thickness + floor(num_hdd_x/2) * tray_width, -hdd_standout, bar_thickness + floor(num_hdd_y/2) * tray_height]) color("Blue") hdd(); + +echo("MODEL INFO: total height = ", num_hdd_y * tray_height); +echo("MODEL INFO: total width = ", num_hdd_x * tray_width + bar_thickness); |