hook.2D.scad 376 B

1234567891011121314151617
  1. include <../assets/hook.scad>
  2. $fn = 100;
  3. size = hole_entrance * 1.2;
  4. depth = hole_entrance * 1.2 / 2 + hole_holding * 1.2 / 2;
  5. move_x = size * (hook_manufacture_count - 1) / 2;
  6. for (count = [-move_x : size : move_x]) {
  7. translate([count, -depth / 2]) {
  8. hook_entrance_shape();
  9. }
  10. translate([count, depth / 2]) {
  11. hook_holding_shape();
  12. }
  13. }