hook.3D.scad 226 B

123456789101112
  1. include <../assets/hook.scad>
  2. $fn = 100;
  3. size = hole_entrance * 1.2;
  4. move_x = size * (hook_manufacture_count - 1) / 2;
  5. for (count = [-move_x : size : move_x]) {
  6. translate([count, 0, 0]) {
  7. hook_object();
  8. }
  9. }