aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Shreve <j.a.shreve@gmail.com>2021-07-26 22:31:34 -0400
committerJoshua Shreve <j.a.shreve@gmail.com>2021-07-26 22:31:34 -0400
commit7627cc59f159745f188e24dd6a0881ad37939af5 (patch)
tree1fed22304e0b92c7b66635fe06e5e0eb3ee8a0c1
parent091b9378f3efa3e0d178e46e37f6f3678ad1ed6c (diff)
Fixing file extension errors for readme.
-rw-r--r--README.md2
-rw-r--r--src/dactyl_manuform.py22
2 files changed, 14 insertions, 10 deletions
diff --git a/README.md b/README.md
index 24444b1..6486fb7 100644
--- a/README.md
+++ b/README.md
@@ -99,7 +99,7 @@ This is a new feature so any feedback is appreciated. If you have issues, messa
### Screw Post Locations
You can now have slightly better control of screw mounts. Set to `'screws_offset':'INSIDE'`, `'screws_offset':'OUTSIDE'` or `'screws_offset': 'ORIGINAL'` to control screw locations relative to the wall.
-![Inside Screws](./resources/inside_screw_posts.PNG)
+![Inside Screws](./resources/inside_screw_posts.png)
## Status / Future
This is now a bit of a monster of many minds and yet continues to bear fruit. I plan to continue to use this code to try new geometries and features to share. I am still working on a new generator, but feel this one can continue to evolve and inform the other effort.
diff --git a/src/dactyl_manuform.py b/src/dactyl_manuform.py
index c205fec..eb660f1 100644
--- a/src/dactyl_manuform.py
+++ b/src/dactyl_manuform.py
@@ -608,6 +608,7 @@ def thumb_1x_layout(shape, cap=False):
if default_1U_cluster:
shape_list.append(thumb_tr_place(rotate(rotate(shape, (0, 0, 90)), [0, 0, thumb_plate_tr_rotation])))
+ shape_list.append(thumb_tr_place(rotate(rotate(shape, (0, 0, 90)), [0, 0, thumb_plate_tr_rotation])))
shape_list.append(thumb_tl_place(rotate(shape, [0, 0, thumb_plate_tl_rotation])))
shapes = add(shape_list)
@@ -1242,29 +1243,32 @@ def minidox_thumb(side="right"):
return shape
-#
# def minidox_thumb_post_tr():
+# debugprint('thumb_post_tr()')
# return translate(web_post(),
-# [(mount_width / 2) - post_adj, (mount_height / 1.15) - post_adj, 0]
-# )
+# [(mount_width / 2) - post_adj, ((mount_height/2) + double_plate_height) - post_adj, 0]
+# )
#
#
# def minidox_thumb_post_tl():
+# debugprint('thumb_post_tl()')
# return translate(web_post(),
-# [-(mount_width / 2) + post_adj, (mount_height / 1.15) - post_adj, 0]
-# )
+# [-(mount_width / 2) + post_adj, ((mount_height/2) + double_plate_height) - post_adj, 0]
+# )
#
#
# def minidox_thumb_post_bl():
+# debugprint('thumb_post_bl()')
# return translate(web_post(),
-# [-(mount_width / 2) + post_adj, -(mount_height / 1.15) + post_adj, 0]
-# )
+# [-(mount_width / 2) + post_adj, -((mount_height/2) + double_plate_height) + post_adj, 0]
+# )
#
#
# def minidox_thumb_post_br():
+# debugprint('thumb_post_br()')
# return translate(web_post(),
-# [(mount_width / 2) - post_adj, -(mount_height / 1.15) + post_adj, 0]
-# )
+# [(mount_width / 2) - post_adj, -((mount_height/2) + double_plate_height) + post_adj, 0]
+# )
def minidox_thumb_connectors():