summaryrefslogtreecommitdiff
path: root/src/dactyl_manuform.py
diff options
context:
space:
mode:
authorJoshua Shreve <j.a.shreve@gmail.com>2021-08-11 21:11:22 -0400
committerJoshua Shreve <j.a.shreve@gmail.com>2021-08-11 21:11:22 -0400
commitadac76f4e7d119dd12fa9612387ac8ba609124fb (patch)
tree5cd69155f3712b40ad9dda9ed84dd10c676e9ca0 /src/dactyl_manuform.py
parentca9783df5dc645a027743902f7f3b2e0348fd716 (diff)
Added undercut for tray.
Discovered why people had an issue with the tray. The cadquery had interference and solid did not. After fixing the unintentional difference, I found both had intereference. Added an undercut to locally thin the wall for tray engagement.
Diffstat (limited to 'src/dactyl_manuform.py')
-rw-r--r--src/dactyl_manuform.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dactyl_manuform.py b/src/dactyl_manuform.py
index d734684..666e890 100644
--- a/src/dactyl_manuform.py
+++ b/src/dactyl_manuform.py
@@ -2854,10 +2854,13 @@ external_start = list(
def external_mount_hole():
print('external_mount_hole()')
shape = box(external_holder_width, 20.0, external_holder_height+.1)
+ undercut = box(external_holder_width+8, 10.0, external_holder_height+8+.1)
+ shape = union([shape, translate(undercut,(0, -5, 0))])
+
shape = translate(shape,
(
external_start[0] + external_holder_xoffset,
- external_start[1],
+ external_start[1] + external_holder_yoffset,
external_holder_height / 2-.05,
)
)