| 1234567891011121314151617 |
- include <../assets/hook.scad>
- $fn = 100;
- size = hole_entrance * 1.2;
- depth = hole_entrance * 1.2 / 2 + hole_holding * 1.2 / 2;
- move_x = size * (hook_manufacture_count - 1) / 2;
- for (count = [-move_x : size : move_x]) {
- translate([count, -depth / 2]) {
- hook_entrance_shape();
- }
-
- translate([count, depth / 2]) {
- hook_holding_shape();
- }
- }
|