Skip to content

Commit 7627cc5

Browse files
committed
Fixing file extension errors for readme.
1 parent 091b937 commit 7627cc5

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ This is a new feature so any feedback is appreciated. If you have issues, messa
9999
### Screw Post Locations
100100

101101
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.
102-
![Inside Screws](./resources/inside_screw_posts.PNG)
102+
![Inside Screws](./resources/inside_screw_posts.png)
103103

104104
## Status / Future
105105
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.

src/dactyl_manuform.py

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -607,6 +607,7 @@ def thumb_1x_layout(shape, cap=False):
607607
]
608608

609609
if default_1U_cluster:
610+
shape_list.append(thumb_tr_place(rotate(rotate(shape, (0, 0, 90)), [0, 0, thumb_plate_tr_rotation])))
610611
shape_list.append(thumb_tr_place(rotate(rotate(shape, (0, 0, 90)), [0, 0, thumb_plate_tr_rotation])))
611612
shape_list.append(thumb_tl_place(rotate(shape, [0, 0, thumb_plate_tl_rotation])))
612613
shapes = add(shape_list)
@@ -1242,29 +1243,32 @@ def minidox_thumb(side="right"):
12421243

12431244
return shape
12441245

1245-
#
12461246
# def minidox_thumb_post_tr():
1247+
# debugprint('thumb_post_tr()')
12471248
# return translate(web_post(),
1248-
# [(mount_width / 2) - post_adj, (mount_height / 1.15) - post_adj, 0]
1249-
# )
1249+
# [(mount_width / 2) - post_adj, ((mount_height/2) + double_plate_height) - post_adj, 0]
1250+
# )
12501251
#
12511252
#
12521253
# def minidox_thumb_post_tl():
1254+
# debugprint('thumb_post_tl()')
12531255
# return translate(web_post(),
1254-
# [-(mount_width / 2) + post_adj, (mount_height / 1.15) - post_adj, 0]
1255-
# )
1256+
# [-(mount_width / 2) + post_adj, ((mount_height/2) + double_plate_height) - post_adj, 0]
1257+
# )
12561258
#
12571259
#
12581260
# def minidox_thumb_post_bl():
1261+
# debugprint('thumb_post_bl()')
12591262
# return translate(web_post(),
1260-
# [-(mount_width / 2) + post_adj, -(mount_height / 1.15) + post_adj, 0]
1261-
# )
1263+
# [-(mount_width / 2) + post_adj, -((mount_height/2) + double_plate_height) + post_adj, 0]
1264+
# )
12621265
#
12631266
#
12641267
# def minidox_thumb_post_br():
1268+
# debugprint('thumb_post_br()')
12651269
# return translate(web_post(),
1266-
# [(mount_width / 2) - post_adj, -(mount_height / 1.15) + post_adj, 0]
1267-
# )
1270+
# [(mount_width / 2) - post_adj, -((mount_height/2) + double_plate_height) + post_adj, 0]
1271+
# )
12681272

12691273

12701274
def minidox_thumb_connectors():

0 commit comments

Comments
 (0)