diff options
author | Joshua Shreve <j.a.shreve@gmail.com> | 2021-07-26 22:31:34 -0400 |
---|---|---|
committer | Joshua Shreve <j.a.shreve@gmail.com> | 2021-07-26 22:31:34 -0400 |
commit | 7627cc59f159745f188e24dd6a0881ad37939af5 (patch) | |
tree | 1fed22304e0b92c7b66635fe06e5e0eb3ee8a0c1 /src | |
parent | 091b9378f3efa3e0d178e46e37f6f3678ad1ed6c (diff) |
Fixing file extension errors for readme.
Diffstat (limited to 'src')
-rw-r--r-- | src/dactyl_manuform.py | 22 |
1 files changed, 13 insertions, 9 deletions
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(): |