Skip to content

Commit

Permalink
Fixed misalignment of hinge and arm due to arm_gap
Browse files Browse the repository at this point in the history
  • Loading branch information
moucha19 committed Aug 18, 2024
1 parent f2c5147 commit abdd594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scad/fletching_jig.scad
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ module jig ( part_select = 0,
for (i = [0:vane_count-1])
{
rotate(a=[0,0,i*rotation_by])
translate([(base_radius) - hinge_radius, 0, base_height - hinge_depth + hinge_radius])
translate([(base_radius) - hinge_radius + hinge_gap/2, 0, base_height - hinge_depth + hinge_radius])
hinge(true);
}
}
Expand Down Expand Up @@ -362,7 +362,7 @@ module jig ( part_select = 0,
}
}
}
translate([base_radius - hinge_radius, 0, base_height - hinge_depth + hinge_radius])
translate([base_radius - hinge_radius + hinge_gap/2, 0, base_height - hinge_depth + hinge_radius])
hinge(false);
}

Expand Down

0 comments on commit abdd594

Please sign in to comment.