-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathblended-dm.py
3785 lines (2896 loc) · 199 KB
/
blended-dm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import bpy
import bmesh
import os
import sys
import time
import mathutils
import operator
from math import pi, radians, sin, cos, tan, sqrt
from contextlib import contextmanager
#Hides select Blender console output
@contextmanager
def suppress_stdout():
with open(os.devnull, "w") as devnull:
old_stdout = sys.stdout
sys.stdout = devnull
try:
yield
finally:
sys.stdout = old_stdout
def main():
#######################################
## Clear previously Generated Design ##
#######################################
for collection in bpy.data.collections:
bpy.data.collections.remove(collection)
for object in bpy.data.objects:
bpy.data.objects.remove(object)
###################
## Blender Setup ##
###################
bpy.context.scene.unit_settings.system = 'METRIC'
bpy.context.scene.unit_settings.scale_length = 1
bpy.context.scene.unit_settings.length_unit = 'MILLIMETERS'
bpy.context.scene.cursor.location = [0, 0, 0]
bpy.context.scene.cursor.rotation_euler = [0, 0, 0]
bpy.ops.extensions.userpref_allow_online()
bpy.ops.extensions.package_install(repo_index=0, pkg_id="edit_mesh_tools")
bpy.ops.extensions.package_install(repo_index=0, pkg_id="print3d_toolbox")
start_time = time.time()
######################
## Shape Parameters ##
######################
nrows = 5 # key rows
ncols = 6 # key columns
alpha = pi / 12.0 # curvature of the columns
beta = pi / 36.0 # curvature of the rows
centerrow = nrows - 3 # controls front_back tilt
centercol = 3 # controls left_right tilt / tenting (higher number is more tenting)
tenting_angle = pi / 15.0 # or, change this for more precise tenting control
sa_profile_key_height = 12.7
if nrows > 5:
column_style = "orthographic"
else:
column_style = "standard"
#column_style = "cylindrical"
def column_offset(column: int) -> list:
if column == 2:
return [0, 2.82, -4.5]
elif column >= 4:
return [0, -12, 5.64] # original [0 -5.8 5.64]
else:
return [0, 0, 0]
thumb_offsets = [6, -3, 7]
th_layout = [[ [ -4, -35, 52], (-56.3, -43.3, -23.5)],
[ [-16, -33, 54], (-37.8, -55.3, -25.3)],
[ [ 6, -34, 40], ( -51, -25, -12)],
[ [ -6, -34, 48], ( -29, -40, -13)],
[ [ 10, -23, 10], ( -32, -15, -2)],
[ [ 10, -23, 10], ( -12, -16, 3)]]
keyboard_z_offset = 9 # controls overall height# original=9 with centercol=3# use 16 for centercol=2
extra_width = 2.5 # extra space between the base of keys# original= 2
extra_height = 1.0 # original= 0.5
wall_z_offset = -15 # length of the first downward_sloping part of the wall (negative)
wall_xy_offset = 5 # offset in the x and/or y direction for the first downward_sloping part of the wall (negative)
wall_thickness = 2 # wall thickness parameter# originally 5
left_wall_x_offset = 2 + wall_xy_offset # shape of left wall
left_wall_z_offset = 3 # shape of left wall
key_well_offset = 0.5 # depth of key from body
###################################
## Shell Parameters and Features ##
###################################
geode_mode = True # Forces other perameters
geode_ratio = 0.1 # Good values ~0.05-0.2
geode_offset = 0.5
geode_seed = 0
body_thickness = 2
body_subsurf_level = 1
relaxed_mesh = True
switch_support = True
loligagger_port = True
wide_pinky = True
lift_for_z_clearence = True # Lifts the whole keyboard to prevent clipping for z<0
lift_for_z_clearence_finger_only = False
lift_for_z_clearence_thumb_only = False
magnet_bottom = True
magnet_diameter = 6.2
magnet_height = 2.2
bottom_thickness = 3 # Thickness of Bottom Plate
# Options include 'none' 'amoeba' 'royale' and 'king'
amoeba_style = 'king'
if amoeba_style == 'none':
amoeba_size = [0, 0, 0]
amoeba_position = [0, 0, 0]
amoeba_inner_mod = [0, 0, 0]
elif amoeba_style == 'amoeba':
amoeba_size = [19.3, 16.5, 1.75]
amoeba_position = [0, -1, -2.25]
amoeba_inner_mod = [2, 1, 0]
elif amoeba_style == 'royale':
amoeba_size = [19, 18.3, 1.75]
amoeba_position = [0, 0, -2.25]
amoeba_inner_mod = [2, 2, 0]
elif amoeba_style == 'king':
amoeba_size = [19.4, 19.4, 1.75]
amoeba_position = [0, 0, -2.25]
amoeba_inner_mod = [2, 2, 0]
#######################
## General variables ##
#######################
lastrow = nrows - 1
cornerrow = lastrow - 1
lastcol = ncols - 1
########################
## Create Collections ##
########################
for collection in ["AXIS", "KEYCAP_PROJECTION_OUTER", "KEYCAP_PROJECTION_INNER", "SWITCH_PROJECTION", "SWITCH_PROJECTION_INNER", "SWITCH_HOLE", "SWITCH_SUPPORT", "AMEOBA_CUT"]:
bpy.context.scene.collection.children.link(bpy.data.collections.new(collection))
############################
## Initialize Tool Shapes ##
############################
print("\n\n{:.2f}".format(time.time()-start_time), "- Initializing Tool Shapes")
bpy.ops.object.empty_add(type='PLAIN_AXES', align='WORLD', location=(0, 0, 0), scale=(1, 1, 1))
bpy.context.selected_objects[0].name = "key_axis"
bpy.ops.object.transform_apply(location=True, rotation=False, scale=True)
keyswitch_height = 14.4
keyswitch_width = 14.4
mount_thickness = 4
mount_height = keyswitch_height + 3
mount_width = keyswitch_width + 3
for size in [1, 1.5]:
for shape in [['switch_projection', (0, 0, 2*mount_thickness-1), (mount_width, mount_height*size, 4*mount_thickness)],
['switch_projection_inner', tuple(map(operator.add, (0, 0, 6*mount_thickness), amoeba_position)) , tuple(map(operator.add, (mount_width+1.8, mount_height*size+1.8, 12*mount_thickness), amoeba_inner_mod))],
['keycap_projection_outer', (0, 0, mount_thickness + 4 + 2), (19, 19*size, 8)],
['keycap_projection_inner', (0, 0, mount_thickness + 4 + 2 - 2), (19+2, 19*size+2, 8)],
['switch_hole', (0, 0, 0), (keyswitch_width, keyswitch_height, 3*mount_thickness)],
['ameoba_cut', amoeba_position, tuple(map(operator.mul, amoeba_size, (1, 1, 2)))],
['nub_cube', ((1.5 / 2) + 0.5*(keyswitch_width-0.01), 0, 0.5*mount_thickness), (1.5, 2.75, mount_thickness - 0.01)]]:
bpy.ops.mesh.primitive_cube_add(size=1, location=shape[1], scale=shape[2])
bpy.context.selected_objects[0].name = shape[0] + "_" + str(size) + "u"
if shape[0] in ['switch_projection', 'switch_projection_inner']:
bpy.ops.object.mode_set(mode = 'EDIT')
bpy.ops.mesh.select_all(action='DESELECT')
grid_mesh = bmesh.from_edit_mesh(bpy.context.object.data)
grid_mesh.verts.ensure_lookup_table()
for vertex in [0, 2, 4, 6]:
grid_mesh.verts[vertex].select = True
bpy.ops.object.vertex_group_assign_new()
bpy.ops.mesh.select_all(action='SELECT')
bpy.ops.object.mode_set(mode = 'OBJECT')
bpy.data.objects[shape[0] + "_" + str(size) + "u"].vertex_groups['Group'].name = 'bottom_project'
elif shape[0] in ['nub_cube']:
bpy.ops.mesh.primitive_cylinder_add(vertices=50, radius=1.0 - 0.005, depth=2.75, location=(keyswitch_width / 2, 0, 1), rotation=(pi / 2, 0, 0))
bpy.context.selected_objects[0].name = "switch_support_" + str(size) + "u"
bpy.data.objects[shape[0] + "_" + str(size) + "u"].select_set(True)
bpy.ops.object.join()
bpy.ops.object.mode_set(mode = 'EDIT')
bpy.ops.mesh.convex_hull()
bpy.ops.mesh.dissolve_limited(angle_limit=radians(5))
bpy.ops.object.mode_set(mode = 'OBJECT')
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
bpy.ops.object.origin_set(type='ORIGIN_CURSOR', center='MEDIAN')
bpy.ops.object.modifier_add(type='MIRROR')
bpy.ops.object.modifier_apply(modifier="Mirror")
bpy.ops.object.select_all(action='DESELECT')
##########################
## FINGER KEY LOCATIONS ##
##########################
print("{:.2f}".format(time.time()-start_time), "- Generate Finger Topology")
cap_top_height = mount_thickness + sa_profile_key_height
row_radius = ((mount_height + extra_height) / 2) / (sin(alpha / 2)) + cap_top_height
column_radius = (((mount_width + extra_width) / 2) / (sin(beta / 2))) + cap_top_height
for column in range(ncols):
for row in range(nrows):
if (column in [2, 3]) or (not row == lastrow):
if column==ncols-1 and wide_pinky:
column_angle = beta * (centercol - column - 0.25)
else:
column_angle = beta * (centercol - column)
tool_identifier = " - " + str(column) + ", " + str(row)
# CREATE tools for each key location and link into respective Collection
for tool in [['AXIS', 'key_axis', 'key_axis' ],
['KEYCAP_PROJECTION_OUTER', 'keycap_projection_outer_1u', 'keycap_projection_outer_1.5u' ],
['KEYCAP_PROJECTION_INNER', 'keycap_projection_inner_1u', 'keycap_projection_inner_1.5u' ],
['SWITCH_PROJECTION', 'switch_projection_1u', 'switch_projection_1u' ],
['SWITCH_PROJECTION_INNER', 'switch_projection_inner_1u', 'switch_projection_inner_1.5u' ],
['SWITCH_HOLE', 'switch_hole_1u', 'switch_hole_1.5u' ],
['SWITCH_SUPPORT', 'switch_support_1u', 'switch_support_1.5u' ],
['AMEOBA_CUT', 'ameoba_cut_1u', 'ameoba_cut_1.5u' ]]:
bpy.ops.object.select_all(action='DESELECT')
if column==ncols-1 and wide_pinky:
bpy.ops.object.add_named(name = tool[2])
bpy.ops.object.make_single_user(object=True, obdata=True, material=True, animation=False)
bpy.context.selected_objects[-1].name = tool[0].lower() + tool_identifier
if tool[0] not in ['AXIS', 'SWITCH_SUPPORT', 'AMEOBA_CUT']:
bpy.ops.transform.rotate(value=1.5708, orient_axis='Z', orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='VIEW', mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=0.001, use_proportional_connected=False, use_proportional_projected=False)
else:
bpy.ops.object.add_named(name = tool[1])
bpy.ops.object.make_single_user(object=True, obdata=True, material=True, animation=False)
bpy.context.selected_objects[-1].name = tool[0].lower() + tool_identifier
bpy.data.collections[tool[0]].objects.link(bpy.data.objects[tool[0].lower() + tool_identifier])
bpy.context.collection.objects.unlink(bpy.data.objects[tool[0].lower() + tool_identifier])
bpy.ops.object.select_all(action='DESELECT')
# CREATE referecnce location for placing thumb cluster
if (column == 1 and row == cornerrow):
bpy.ops.object.empty_add(type='CUBE', align='WORLD', location=(mount_height/2, -mount_width/2, 0), scale=(1, 1, 1))
bpy.context.active_object.name = "thumb_orgin"
bpy.data.collections['AXIS'].objects.link(bpy.data.objects["thumb_orgin"])
bpy.context.collection.objects.unlink(bpy.data.objects["thumb_orgin"])
# Select all tools
for tool in ['AXIS', 'KEYCAP_PROJECTION_OUTER', 'KEYCAP_PROJECTION_INNER', 'SWITCH_PROJECTION', 'SWITCH_PROJECTION_INNER', 'SWITCH_HOLE', 'SWITCH_SUPPORT', 'AMEOBA_CUT']:
bpy.data.objects[tool.lower() + tool_identifier].select_set(True)
# Apply transfomations to each set tools
if (column_style == "standard"):
bpy.ops.transform.rotate(value=(-alpha * (centerrow - row)), orient_axis='X', center_override=(0.0, 0.0, row_radius))
bpy.ops.transform.rotate(value=(-column_angle), orient_axis='Y', center_override=(0.0, 0.0, column_radius))
bpy.ops.transform.translate(value=column_offset(column), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
elif (column_style == "orthographic"):
bpy.ops.transform.rotate(value=(-alpha * (centerrow - row)), orient_axis='X', center_override=(0.0, 0.0, row_radius))
bpy.ops.transform.rotate(value=(-column_angle), orient_axis='Y', center_override=(0.0, 0.0, 0.0))
if column==ncols-1 and wide_pinky:
bpy.ops.transform.translate(value=( (column - centercol + 0.25)*(1 + column_radius * sin(beta)), 0, column_radius * (1 - cos(column_angle))), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
else:
bpy.ops.transform.translate(value=( (column - centercol)*(1 + column_radius * sin(beta)), 0, column_radius * (1 - cos(column_angle))), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.transform.translate(value=column_offset(column), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
elif (column_style == "cylindrical"):
bpy.ops.transform.rotate(value=(-alpha * (centerrow - row)), orient_axis='X', center_override=(0.0, 0.0, row_radius))
if column==ncols-1 and wide_pinky:
bpy.ops.transform.translate(value=( (column - centercol + 0.25)*(1 + column_radius * sin(beta)), 0, column_radius * (1 - cos(column_angle))), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
else:
bpy.ops.transform.translate(value=( (column - centercol)*(1 + column_radius * sin(beta)), 0, column_radius * (1 - cos(column_angle))), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.transform.translate(value=column_offset(column), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.transform.rotate(value=(-tenting_angle), orient_axis='Y', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.translate(value=(0, 0, keyboard_z_offset), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
##########################
## THUMB KEY LOCATIONS ##
##########################
print("{:.2f}".format(time.time()-start_time), "- Generate Thumb Topology")
for key in range(len(th_layout)):
tool_identifier = " - thumb - " + str(key)
# Create tools for each key location and link into respective Collection
for tool in [['AXIS', 'key_axis', 'key_axis' ],
['KEYCAP_PROJECTION_OUTER', 'keycap_projection_outer_1u', 'keycap_projection_outer_1.5u' ],
['KEYCAP_PROJECTION_INNER', 'keycap_projection_inner_1u', 'keycap_projection_inner_1.5u' ],
['SWITCH_PROJECTION', 'switch_projection_1u', 'switch_projection_1.5u' ],
['SWITCH_PROJECTION_INNER', 'switch_projection_inner_1u', 'switch_projection_inner_1u' ],
['SWITCH_HOLE', 'switch_hole_1u', 'switch_hole_1.5u' ],
['SWITCH_SUPPORT', 'switch_support_1u', 'switch_support_1.5u' ],
['AMEOBA_CUT', 'ameoba_cut_1u', 'ameoba_cut_1.5u' ]]:
bpy.ops.object.select_all(action='DESELECT')
if (key>3):
bpy.ops.object.add_named(name = tool[2])
bpy.ops.object.make_single_user(object=True, obdata=True, material=True, animation=False)
bpy.context.selected_objects[-1].name = tool[0].lower() + tool_identifier
if tool[0] in [ 'AMEOBA_CUT']:
bpy.ops.transform.translate(value=(0, -amoeba_position[1], 0), constraint_axis=(True, True, True), mirror=False, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.transform.rotate(value=1.5708, orient_axis='Z', orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='VIEW', mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=0.001, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.transform.translate(value=(amoeba_position[1], 0, 0), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=False, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
if tool[0] in [ 'SWITCH_HOLE']:
bpy.ops.transform.rotate(value=1.5708, orient_axis='Z', orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='VIEW', mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=0.001, use_proportional_connected=False, use_proportional_projected=False)
else:
bpy.ops.object.add_named(name = tool[1])
bpy.ops.object.make_single_user(object=True, obdata=True, material=True, animation=False)
bpy.context.selected_objects[-1].name = tool[0].lower() + tool_identifier
bpy.data.collections[tool[0]].objects.link(bpy.data.objects[tool[0].lower() + tool_identifier])
bpy.context.collection.objects.unlink(bpy.data.objects[tool[0].lower() + tool_identifier])
# Select all tools
bpy.ops.object.select_all(action='DESELECT')
for tool in ['AXIS', 'KEYCAP_PROJECTION_OUTER', 'KEYCAP_PROJECTION_INNER', 'SWITCH_PROJECTION', 'SWITCH_PROJECTION_INNER', 'SWITCH_HOLE', 'SWITCH_SUPPORT', 'AMEOBA_CUT']:
bpy.data.objects[tool.lower() + tool_identifier].select_set(True)
# Apply rotation
bpy.ops.transform.rotate(value=-radians(th_layout[key][0][0]), orient_axis='X', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.rotate(value=-radians(th_layout[key][0][1]), orient_axis='Y', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.rotate(value=-radians(th_layout[key][0][2]), orient_axis='Z', center_override=(0.0, 0.0, 0.0))
# Move keys into position
bpy.ops.transform.translate(value=bpy.data.objects['thumb_orgin'].location, orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.transform.translate(value=thumb_offsets, orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.transform.translate(value=th_layout[key][1], orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.object.select_all(action='DESELECT')
for shape in ['keycap_projection_outer_', 'keycap_projection_inner_', 'switch_projection_', 'switch_projection_inner_', 'switch_hole_', 'switch_support_', 'ameoba_cut_']:
for size in [1, 1.5]:
bpy.data.objects[shape + str(size) + 'u' ].select_set(True)
bpy.data.objects['key_axis'].select_set(True)
with suppress_stdout(): bpy.ops.object.delete()
#####################################
## RAISE ALL SWITCHES ABOVE Z=0 ##
#####################################
if lift_for_z_clearence:
extra_Z_offset = 0
bpy.ops.object.select_all(action='DESELECT')
bpy.ops.object.select_all(action='SELECT')
bpy.ops.transform.translate(value=(0, 0, -100), orient_matrix_type='GLOBAL', constraint_axis=(False, False, True), mirror=False, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.object.select_all(action='DESELECT')
for collection in ['SWITCH_HOLE', 'AMEOBA_CUT']:
for thing in bpy.data.collections[collection].objects:
bpy.context.view_layer.objects.active = thing
thing.select_set(True)
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
bpy.ops.object.mode_set(mode = 'EDIT')
bpy.ops.mesh.select_all(action='DESELECT')
grid_mesh = bmesh.from_edit_mesh(bpy.context.object.data)
grid_mesh.verts.ensure_lookup_table()
for vertex in grid_mesh.verts:
vertex.select = True
if vertex.co[2] + 2.6 <= 0 and -2.6-vertex.co[2] > extra_Z_offset:
extra_Z_offset = -2.6-vertex.co[2]
vertex.select = False
thing.select_set(False)
bpy.ops.object.mode_set(mode = 'OBJECT')
bpy.ops.object.select_all(action='SELECT')
bpy.ops.transform.translate(value=(0, 0, extra_Z_offset + 0.2), constraint_axis=(False, False, True), mirror=False, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.object.select_all(action='DESELECT')
#####################################
## RAISE FINGER SWITCHES ABOVE Z=0 ##
#####################################
if lift_for_z_clearence_finger_only:
extra_Z_offset = 0
bpy.ops.object.select_all(action='DESELECT')
for thing in bpy.data.objects:
if "thumb" not in thing.name: thing.select_set(True)
bpy.ops.transform.translate(value=(0, 0, -100), orient_axis_ortho='X', orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(False, False, True), mirror=False, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.object.select_all(action='DESELECT')
for collection in ['SWITCH_HOLE', 'AMEOBA_CUT']:
for thing in bpy.data.collections[collection].objects:
bpy.context.view_layer.objects.active = thing
if "thumb" not in thing.name: thing.select_set(True)
if "thumb" in thing.name: continue
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
bpy.ops.object.mode_set(mode = 'EDIT')
bpy.ops.mesh.select_all(action='DESELECT')
grid_mesh = bmesh.from_edit_mesh(bpy.context.object.data)
grid_mesh.verts.ensure_lookup_table()
for vertex in grid_mesh.verts:
vertex.select = True
if vertex.co[2] <= 0.1 and -vertex.co[2] > extra_Z_offset:
extra_Z_offset = -vertex.co[2]
vertex.select = False
thing.select_set(False)
bpy.ops.object.mode_set(mode = 'OBJECT')
for object in bpy.data.objects:
if "thumb" not in object.name: object.select_set(True)
bpy.ops.transform.translate(value=(0, 0, extra_Z_offset + 0.2), orient_axis_ortho='X', orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(False, False, True), mirror=False, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.object.select_all(action='DESELECT')
####################################
## RAISE THUMB SWITCHES ABOVE Z=0 ##
####################################
if lift_for_z_clearence_thumb_only:
extra_Z_offset = 0
bpy.ops.object.select_all(action='DESELECT')
for thing in bpy.data.objects:
if "thumb" in thing.name: thing.select_set(True)
bpy.ops.transform.translate(value=(0, 0, -100), orient_axis_ortho='X', orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(False, False, True), mirror=False, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.object.select_all(action='DESELECT')
for collection in ['SWITCH_HOLE', 'AMEOBA_CUT']:
for thing in bpy.data.collections[collection].objects:
bpy.context.view_layer.objects.active = thing
if "thumb" in thing.name: thing.select_set(True)
if "thumb" not in thing.name: continue
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
bpy.ops.object.mode_set(mode = 'EDIT')
bpy.ops.mesh.select_all(action='DESELECT')
grid_mesh = bmesh.from_edit_mesh(bpy.context.object.data)
grid_mesh.verts.ensure_lookup_table()
for vertex in grid_mesh.verts:
vertex.select = True
if vertex.co[2] <= 0.1 and -vertex.co[2] > extra_Z_offset:
extra_Z_offset = -vertex.co[2]
vertex.select = False
thing.select_set(False)
bpy.ops.object.mode_set(mode = 'OBJECT')
for object in bpy.data.objects:
if "thumb" in object.name: object.select_set(True)
bpy.ops.transform.translate(value=(0, 0, extra_Z_offset + 0.2), orient_axis_ortho='X', orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(False, False, True), mirror=False, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.object.select_all(action='DESELECT')
##################
## FINGER PLATE ##
##################
print("{:.2f}".format(time.time()-start_time), "- Generate Finger Plate")
for finger_plate in ["top", "bottom"]:
bpy.ops.mesh.primitive_grid_add(x_subdivisions=2*nrows-1, y_subdivisions=2*ncols-1, size=1, rotation=(0, 0, -pi/2))
bpy.ops.transform.resize(value=(2*ncols-1, 2*nrows-1, 1))
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
bpy.context.selected_objects[0].name = "finger_plate_" + finger_plate
bpy.ops.object.mode_set(mode = 'EDIT')
bpy.ops.mesh.select_all(action='DESELECT')
face_is_a_key = []
grid_mesh = bmesh.from_edit_mesh(bpy.context.object.data)
grid_mesh.verts.ensure_lookup_table()
grid_mesh.edges.ensure_lookup_table()
grid_mesh.faces.ensure_lookup_table()
for column in range(ncols):
for row in range(nrows):
if (column in [2, 3]) or (not row == lastrow):
face_is_a_key.append(row * 2 + column* 2*(2*nrows-1))
grid_mesh.faces[face_is_a_key[-1]].select = True
bpy.ops.object.vertex_group_assign_new()
bpy.data.objects["finger_plate_" + finger_plate].vertex_groups['Group'].name = 'switch - '+ str(column) + ', ' + str(row)
switch_size = 1
if column==ncols-1 and wide_pinky: switch_size = 1.5
if finger_plate is "top":
bpy.ops.transform.resize(value=(mount_height*switch_size + 0.25, mount_width + 0.25, 1))
bpy.ops.transform.translate(value=-grid_mesh.faces[face_is_a_key[-1]].calc_center_median(), orient_type='GLOBAL')
bpy.ops.transform.translate(value=(0, 0, mount_thickness+key_well_offset), orient_type='GLOBAL')
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - '+ str(column) + ', ' + str(row)].rotation_euler[0], orient_axis='X', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - '+ str(column) + ', ' + str(row)].rotation_euler[1], orient_axis='Y', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - '+ str(column) + ', ' + str(row)].rotation_euler[2], orient_axis='Z', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.translate(value=bpy.data.objects['axis - '+ str(column) + ', ' + str(row)].location, orient_type='GLOBAL')
elif finger_plate is "bottom":
bpy.ops.transform.resize(value=((amoeba_size[0]*switch_size + 1) if (amoeba_size[0]*switch_size + 1) > (mount_height*switch_size + 0.25) else (mount_height*switch_size + 0.25), (amoeba_size[1] + 1) if (amoeba_size[1] + 1) > (mount_width + 0.25) else (mount_width + 0.25), 1))
bpy.ops.transform.translate(value=-grid_mesh.faces[face_is_a_key[-1]].calc_center_median(), orient_type='GLOBAL')
bpy.ops.transform.translate(value=(0, 0, key_well_offset+amoeba_position[2]), orient_type='GLOBAL')
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - '+ str(column) + ', ' + str(row)].rotation_euler[0], orient_axis='X', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - '+ str(column) + ', ' + str(row)].rotation_euler[1], orient_axis='Y', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - '+ str(column) + ', ' + str(row)].rotation_euler[2], orient_axis='Z', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.translate(value=bpy.data.objects['axis - '+ str(column) + ', ' + str(row)].location, orient_type='GLOBAL')
bpy.ops.transform.translate(value=(0,0,-key_well_offset), orient_type='GLOBAL')
bpy.ops.mesh.select_all(action='DESELECT')
for vertex_group_name in ['finger_col_gap_0', 'finger_col_gap_1', 'finger_col_gap_2', 'finger_col_gap_3', 'finger_col_gap_4']:
bpy.ops.object.vertex_group_assign_new()
bpy.data.objects["finger_plate_" + finger_plate].vertex_groups['Group'].name = vertex_group_name
for column in range(ncols-1):
for row in range(2*nrows-1):
grid_mesh.faces[(2*nrows-1)*(1+2*column)+row].select = True
bpy.ops.object.vertex_group_set_active(group='finger_col_gap_' + str(column))
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
for vertex_group_name in ['finger_row_gap_0', 'finger_row_gap_1', 'finger_row_gap_2']:
bpy.ops.object.vertex_group_assign_new()
bpy.data.objects["finger_plate_" + finger_plate].vertex_groups['Group'].name = vertex_group_name
for row in range(nrows-2):
for column in range(2*ncols-1):
grid_mesh.faces[2*row+1 + column*(2*nrows-1)].select = True
bpy.ops.object.vertex_group_set_active(group='finger_row_gap_' + str(row))
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
for vertex_group_name in ['key_finger', 'finger_TOP', 'finger_LEFT', 'finger_RIGHT', 'finger_BOTTOM', 'finger_corner_BL', 'finger_corner_TL', 'finger_corner_TR', 'finger_corner_BR', 'RAISE_0', 'RAISE_1', 'RAISE_2', 'RING_0', 'RING_1', 'RING_2', 'RING_3', 'BRIDGE_LEFT', 'BRIDGE_MID', 'BRIDGE_RIGHT', 'BRIDGE_LEFT_RING_0', 'BRIDGE_RIGHT_RING_0', 'AMEOBA_CORRECT_R1', 'AMEOBA_CORRECT_R2']:
bpy.ops.object.vertex_group_assign_new()
bpy.data.objects["finger_plate_" + finger_plate].vertex_groups['Group'].name = vertex_group_name
# Vertex Group - key
for face in face_is_a_key:
grid_mesh.faces[face].select = True
bpy.ops.object.vertex_group_set_active(group='key_finger')
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
# Create vertex group faces
for side in [['finger_TOP', [0, nrows*(ncols-1)*4 + nrows*2]],
['finger_LEFT', [0, nrows*2-3]],
['finger_RIGHT', [nrows*(ncols-1)*4 + nrows*2, nrows*ncols*4-3]],
['finger_BOTTOM', [nrows*14-1, nrows*ncols*4-3]],
['finger_corner_BL', [nrows*2-3]],
['finger_corner_TL', [0]],
['finger_corner_TR', [nrows*(ncols-1)*4 + nrows*2]],
['finger_corner_BR', [nrows*ncols*4-3]],
['BRIDGE_LEFT', [nrows*2-3, nrows*6-3]],
['BRIDGE_MID', [nrows*6-3, nrows*10-1]],
['BRIDGE_RIGHT', [nrows*10-1, nrows*14-1]],
['BRIDGE_LEFT_RING_0', [nrows*2-3]],
['BRIDGE_RIGHT_RING_0', [nrows*14-1]],
['AMEOBA_CORRECT_R1', [nrows*10-1]],
['AMEOBA_CORRECT_R2', [nrows*10-1]]]:
bpy.ops.object.vertex_group_set_active(group=side[0])
for vertex in side[1]:
grid_mesh.verts[vertex].select = True
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
# Create temporary vertex groups for adding faces
for side in [['CORRECTION_1', [nrows*8 - 3, nrows*10 - 2]],
['CORRECTION_2', [nrows*16 - 1, nrows*18 - 3]]]:
for vertex in side[1]:
grid_mesh.verts[vertex].select = True
bpy.ops.object.vertex_group_assign_new()
bpy.data.objects["finger_plate_" + finger_plate].vertex_groups['Group'].name = side[0]
bpy.ops.mesh.select_all(action='DESELECT')
# Remove unused faces
bpy.ops.object.vertex_group_set_active(group='key_finger')
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.select_mode(type="FACE")
bpy.ops.mesh.select_all(action='INVERT')
bpy.ops.mesh.delete(type='FACE')
bpy.ops.mesh.select_mode(type="VERT")
# Add correction faces
for side in ['CORRECTION_1', 'CORRECTION_2']:
bpy.ops.object.vertex_group_set_active(group=side)
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.shortest_path_select(edge_mode='SELECT')
bpy.ops.mesh.edge_face_add()
bpy.ops.mesh.quads_convert_to_tris(quad_method='BEAUTY', ngon_method='BEAUTY')
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_remove()
# Add connecting edges to vertex groups
for side in ['finger_TOP', 'finger_LEFT', 'finger_RIGHT', 'finger_BOTTOM', 'BRIDGE_LEFT', 'BRIDGE_MID', 'BRIDGE_RIGHT']:
bpy.ops.object.vertex_group_set_active(group=side)
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.shortest_path_select(edge_mode='SELECT', use_topology_distance=True)
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.mode_set(mode = 'OBJECT')
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
#################
## THUMB PLATE ##
#################
print("{:.2f}".format(time.time()-start_time), "- Generate Thumb Plate")
for thumb_plate in ["top", "bottom"]:
bpy.ops.mesh.primitive_grid_add(x_subdivisions=3, y_subdivisions=7, size=1, location=(0, 0, mount_thickness), rotation=(0, 0, -pi/2))
bpy.ops.transform.resize(value=(7, 3, 1), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(False, True, False), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
bpy.context.selected_objects[0].name = "thumb_plate_" + thumb_plate
bpy.ops.object.mode_set(mode = 'EDIT')
bpy.ops.mesh.select_all(action='DESELECT')
grid_mesh = bmesh.from_edit_mesh(bpy.context.object.data)
grid_mesh.verts.ensure_lookup_table()
grid_mesh.edges.ensure_lookup_table()
grid_mesh.faces.ensure_lookup_table()
faces_to_use = [0, 2, 6, 8, 12, 18]
# Apply transfomations to each key face
for thumb in range(len(faces_to_use)):
grid_mesh.faces[faces_to_use[thumb]].select = True
bpy.ops.object.vertex_group_assign_new()
bpy.data.objects["thumb_plate_" + thumb_plate].vertex_groups['Group'].name = 'switch - thumb - ' + str(thumb)
switch_size = 1
if thumb>3: switch_size = 1.5
if thumb_plate is "top":
bpy.ops.transform.resize(value=(mount_height+0.25, mount_height*switch_size+0.25, 1))
bpy.ops.transform.translate(value=-grid_mesh.faces[faces_to_use[thumb]].calc_center_median(), orient_type='GLOBAL')
bpy.ops.transform.translate(value=(0, 0, mount_thickness+key_well_offset), orient_type='GLOBAL')
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - thumb - ' + str(thumb)].rotation_euler[0], orient_axis='X', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - thumb - ' + str(thumb)].rotation_euler[1], orient_axis='Y', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - thumb - ' + str(thumb)].rotation_euler[2], orient_axis='Z', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.translate(value=bpy.data.objects['axis - thumb - ' + str(thumb)].location, orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
if thumb_plate is "bottom":
switch_size = 1
bpy.ops.transform.resize(value=((amoeba_size[0] + 1) if (amoeba_size[0] + 1) > (mount_height+0.25) else (mount_height+0.25), (amoeba_size[1]*switch_size + 1) if (amoeba_size[1]*switch_size + 1) > (mount_height*switch_size+0.25) else (mount_height*switch_size+0.25), 1))
bpy.ops.transform.translate(value=-grid_mesh.faces[faces_to_use[thumb]].calc_center_median(), orient_type='GLOBAL')
bpy.ops.transform.translate(value=(0, 0, key_well_offset+amoeba_position[2]), orient_type='GLOBAL')
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - thumb - ' + str(thumb)].rotation_euler[0], orient_axis='X', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - thumb - ' + str(thumb)].rotation_euler[1], orient_axis='Y', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.rotate(value=-bpy.data.objects['axis - thumb - ' + str(thumb)].rotation_euler[2], orient_axis='Z', center_override=(0.0, 0.0, 0.0))
bpy.ops.transform.translate(value=bpy.data.objects['axis - thumb - ' + str(thumb)].location, orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.transform.translate(value=(0,0,-key_well_offset), orient_type='GLOBAL')
bpy.ops.mesh.select_all(action='DESELECT')
for vertex_group_name in ['key_thumb', 'thumb_LEFT', 'thumb_RIGHT', 'thumb_BOTTOM', 'thumb_corner_TL', 'thumb_corner_TLL', 'thumb_corner_ML', 'thumb_corner_BL', 'thumb_corner_BR', 'BRIDGE_LEFT', 'BRIDGE_MID', 'BRIDGE_RIGHT', 'BRIDGE_LEFT_RING_0', 'BRIDGE_RIGHT_RING_0', 'AMEOBA_CORRECT_R1', 'AMEOBA_CORRECT_R2']:
bpy.ops.object.vertex_group_assign_new()
bpy.data.objects["thumb_plate_" + thumb_plate].vertex_groups['Group'].name = vertex_group_name
# Remove unused faces
grid_mesh.faces.ensure_lookup_table()
for num in faces_to_use:
grid_mesh.faces[num].select = True
bpy.ops.mesh.select_mode(type="VERT")
bpy.ops.mesh.select_all(action='INVERT')
bpy.ops.mesh.delete(type='VERT')
grid_mesh.faces.ensure_lookup_table()
grid_mesh.faces[7].select = True
bpy.ops.mesh.delete(type='FACE')
# Add correction faces
grid_mesh.verts.ensure_lookup_table()
for correction in [[ 0, 4, 8],
[15, 21, 23],
[14, 15, 19, 21],
[14, 17, 19],
[ 9, 10, 13],
[10, 13, 14],
[13, 14, 17]]:
for vertex in correction:
grid_mesh.verts[vertex].select = True
if thumb_plate is "bottom" and correction == [ 9, 10, 13, 14, 17]: print(zzz)
bpy.ops.mesh.edge_face_add()
bpy.ops.mesh.quads_convert_to_tris(quad_method='BEAUTY', ngon_method='BEAUTY')
bpy.ops.mesh.select_all(action='DESELECT')
# Vertex Group - key
bpy.ops.mesh.select_all(action='SELECT')
bpy.ops.object.vertex_group_set_active(group='key_thumb')
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
# Create vertex group faces
for side in [['thumb_LEFT', [0, 12]],
['thumb_RIGHT', [3, 23]],
['thumb_BOTTOM', [0, 3]],
['thumb_corner_TL', [16]],
['thumb_corner_TLL', [12]],
['thumb_corner_ML', [8]],
['thumb_corner_BL', [0]],
['thumb_corner_BR', [3]],
['BRIDGE_LEFT', [16, 20]],
['BRIDGE_MID', [20, 23]],
['BRIDGE_RIGHT', [23]],
['BRIDGE_LEFT_RING_0', [12, 16]],
['BRIDGE_RIGHT_RING_0', [23]],
['AMEOBA_CORRECT_R1', [22]],
['AMEOBA_CORRECT_R2', [23]]]:
bpy.ops.object.vertex_group_set_active(group=side[0])
for vertex in side[1]:
grid_mesh.verts[vertex].select = True
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
# Add connecting edges to vertex groups
for side in ['thumb_LEFT', 'thumb_RIGHT', 'thumb_BOTTOM', 'BRIDGE_LEFT', 'BRIDGE_MID']:
bpy.ops.object.vertex_group_set_active(group=side)
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.shortest_path_select(edge_mode='SELECT', use_topology_distance=True)
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.mode_set(mode = 'OBJECT')
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
######
## SINK KEYS
#####
#sunk buffer
bpy.ops.object.select_all(action='DESELECT')
bpy.context.view_layer.objects.active = bpy.data.objects['finger_plate_top']
bpy.ops.object.mode_set(mode = 'EDIT')
for side in [['finger_TOP', ['finger_LEFT', 'finger_RIGHT', 'key_finger']],
['finger_LEFT', ['finger_TOP', 'key_finger']],
['finger_RIGHT', ['finger_TOP', 'finger_BOTTOM', 'key_finger']],
['finger_BOTTOM', ['finger_RIGHT', 'key_finger']]]:
bpy.ops.object.vertex_group_set_active(group=side[0])
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.offset_edges(geometry_mode='extrude', width=1, follow_face=True, caches_valid=False)
bpy.ops.object.vertex_group_assign()
for opp_side in side[1]:
bpy.ops.object.vertex_group_set_active(group=opp_side)
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_all(action='DESELECT')
for corner in [['finger_corner_TL'],
['finger_corner_TR'],
['finger_corner_BR']]:
bpy.ops.object.vertex_group_set_active(group=corner[0])
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.edge_face_add()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_set_active(group='finger_TOP')
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_set_active(group='finger_LEFT')
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_set_active(group='finger_RIGHT')
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_set_active(group='finger_BOTTOM')
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.select_all(action='INVERT')
bpy.ops.object.vertex_group_set_active(group=corner[0])
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_set_active(group='BRIDGE_LEFT')
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_set_active(group='BRIDGE_MID')
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_set_active(group='finger_LEFT')
bpy.ops.object.vertex_group_deselect()
bpy.ops.object.vertex_group_set_active(group='switch - 2, ' + str(lastrow))
bpy.ops.object.vertex_group_deselect()
bpy.ops.mesh.offset_edges(geometry_mode='extrude', width=1, follow_face=True, caches_valid=False)
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_set_active(group='BRIDGE_RIGHT')
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_set_active(group='switch - 3, ' + str(lastrow))
bpy.ops.object.vertex_group_deselect()
bpy.ops.mesh.offset_edges(geometry_mode='extrude', width=1, follow_face=True, caches_valid=False)
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_set_active(group='finger_corner_BL')
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.edge_face_add()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_set_active(group='BRIDGE_MID')
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_set_active(group='BRIDGE_LEFT')
bpy.ops.object.vertex_group_deselect()
bpy.ops.mesh.edge_face_add()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_set_active(group='BRIDGE_RIGHT')
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_set_active(group='BRIDGE_MID')
bpy.ops.object.vertex_group_deselect()
bpy.ops.mesh.edge_face_add()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.mesh.select_non_manifold()
bpy.ops.object.vertex_group_set_active(group='key_finger')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_set_active(group='finger_corner_BL')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.object.vertex_group_set_active(group='finger_LEFT')
bpy.ops.object.vertex_group_select()
bpy.ops.object.vertex_group_set_active(group='BRIDGE_LEFT')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.object.vertex_group_set_active(group='BRIDGE_MID')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.object.vertex_group_set_active(group='BRIDGE_RIGHT')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_all(action='DESELECT')
# Re-Point corners
bpy.ops.object.vertex_group_set_active(group='finger_corner_TL')
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.offset_edges(geometry_mode='extrude', width=1/sqrt(2), follow_face=True, caches_valid=False)
bpy.ops.transform.resize(value=(0, 0, 0), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False, snap=False, snap_elements={'INCREMENT'}, use_snap_project=False, snap_target='CLOSEST', use_snap_self=True, use_snap_edit=True, use_snap_nonedit=True, use_snap_selectable=False)
bpy.ops.mesh.remove_doubles()
bpy.ops.object.vertex_group_set_active(group='finger_TOP')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.object.vertex_group_set_active(group='finger_LEFT')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_more()
bpy.ops.object.vertex_group_set_active(group='finger_corner_TL')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_less()
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_set_active(group='finger_corner_TR')
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.offset_edges(geometry_mode='extrude', width=1/sqrt(2), follow_face=True, caches_valid=False)
bpy.ops.transform.resize(value=(0, 0, 0), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False, snap=False, snap_elements={'INCREMENT'}, use_snap_project=False, snap_target='CLOSEST', use_snap_self=True, use_snap_edit=True, use_snap_nonedit=True, use_snap_selectable=False)
bpy.ops.mesh.remove_doubles()
bpy.ops.object.vertex_group_set_active(group='finger_TOP')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.object.vertex_group_set_active(group='finger_RIGHT')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_more()
bpy.ops.object.vertex_group_set_active(group='finger_corner_TR')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_less()
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_set_active(group='finger_corner_BR')
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.offset_edges(geometry_mode='extrude', width=1/sqrt(2), follow_face=True, caches_valid=False)
bpy.ops.transform.resize(value=(0, 0, 0), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False, snap=False, snap_elements={'INCREMENT'}, use_snap_project=False, snap_target='CLOSEST', use_snap_self=True, use_snap_edit=True, use_snap_nonedit=True, use_snap_selectable=False)
bpy.ops.mesh.remove_doubles()
bpy.ops.object.vertex_group_set_active(group='finger_BOTTOM')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.object.vertex_group_set_active(group='finger_RIGHT')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_more()
bpy.ops.object.vertex_group_set_active(group='finger_corner_BR')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_less()
bpy.ops.object.vertex_group_assign()
bpy.ops.mesh.select_all(action='DESELECT')
bpy.ops.object.vertex_group_set_active(group='finger_corner_BL')
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.offset_edges(geometry_mode='extrude', width=1/sqrt(2), follow_face=True, caches_valid=False)
bpy.ops.transform.resize(value=(0, 0, 0), orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(True, True, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False, snap=False, snap_elements={'INCREMENT'}, use_snap_project=False, snap_target='CLOSEST', use_snap_self=True, use_snap_edit=True, use_snap_nonedit=True, use_snap_selectable=False)
bpy.ops.mesh.remove_doubles()
bpy.ops.object.vertex_group_set_active(group='BRIDGE_LEFT')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.object.vertex_group_set_active(group='finger_LEFT')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_more()
bpy.ops.object.vertex_group_set_active(group='finger_corner_BL')
bpy.ops.object.vertex_group_remove_from()
bpy.ops.mesh.select_less()