feat: add a printable overhand for the track in the adapter

This commit is contained in:
2026-07-20 19:18:24 -05:00
parent 06b1939f72
commit 927d29da87
+5 -2
View File
@@ -122,8 +122,11 @@ def build_drive_shaft_bar_adapter():
extrude(amount=height - thickness, mode=Mode.SUBTRACT)
# extrusion screw holes
# TODO: remove thin walls on track with a beveled cube cut-out
with Locations((0, 0, height - ext_screw_hole_offset)):
screws_origin = Location((0, 0, height - ext_screw_hole_offset))
with Locations(screws_origin):
with BuildPart(screws_origin, mode=Mode.SUBTRACT) as ext_track_cut_out:
Box(ext_size, ext_size, ext_screw_hole_diam + 8)
chamfer(ext_track_cut_out.edges(), 3)
with PolarLocations(0, 4):
with Locations(Rotation(0, 90, 0)):
Hole(ext_screw_hole_diam / 2)