-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathRhinTools.py
1299 lines (933 loc) · 38.2 KB
/
RhinTools.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
from .PontosAnatomicos import *
from .Cefalometria import *
from .FerrMedidas import *
from .FerrImgTomo import * # Importa tratamento de materiais
from math import sqrt
import bmesh
from mathutils import Matrix, Vector
from time import gmtime, strftime
# PONTOS ANATOMICOS
class Alar_Cheek_Groove_right_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.alar_cheek_groove_right_pt"
bl_label = "Alar Cheek Groove right"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Alar Cheek Groove right' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Alar Cheek Groove right', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Alar_Cheek_Groove_right_pt)
class Alar_Cheek_Groove_left_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.alar_cheek_groove_left_pt"
bl_label = "Alar Cheek Groove left"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Alar Cheek Groove left' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Alar Cheek Groove left', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Alar_Cheek_Groove_left_pt)
class Medial_Canthus_right_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.medial_canthus_right_pt"
bl_label = "Medial Canthus right"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Medial Canthus right' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Medial Canthus right', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Medial_Canthus_right_pt)
class Medial_Canthus_left_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.medial_canthus_left_pt"
bl_label = "Medial Canthus left"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Medial Canthus left' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Medial Canthus left', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Medial_Canthus_left_pt)
class Radix_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.radix_pt"
bl_label = "Radix"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Radix' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Radix', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Radix_pt)
class Anterior_Nostril_left_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.anterior_nostril_left_pt"
bl_label = "Anterior Nostril left"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Anterior Nostril left' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Anterior Nostril left', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Anterior_Nostril_left_pt)
class Anterior_Nostril_right_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.anterior_nostril_right_pt"
bl_label = "Anterior Nostril right"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Anterior Nostril right' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Anterior Nostril right', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Anterior_Nostril_right_pt)
class Posterior_Nostril_left_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.posterior_nostril_left_pt"
bl_label = "Posterior Nostril left"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Posterior Nostril left' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Posterior Nostril left', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Posterior_Nostril_left_pt)
class Posterior_Nostril_right_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.posterior_nostril_right_pt"
bl_label = "Posterior Nostril right"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Posterior Nostril right' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Posterior Nostril right', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Posterior_Nostril_right_pt)
class Rhinion_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.rhinion_pt"
bl_label = "Rhinion"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Rhinion' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Rhinion', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Rhinion_pt)
class Alar_Groove_right_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.alar_groove_right_pt"
bl_label = "Alar Groove right"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Alar Groove right' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Alar Groove right', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Alar_Groove_right_pt)
class Alar_Groove_left_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.alar_groove_left_pt"
bl_label = "Alar Groove left"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Alar Groove left' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Alar Groove left', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Alar_Groove_left_pt)
class Supratip_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.supratip_pt"
bl_label = "Supratip"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Supratip' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Supratip', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Supratip_pt)
class Infratip_Lobule_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.infratip_lobule_pt"
bl_label = "Infratip Lobule"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Infratip Lobule' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Infratip Lobule', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Infratip_Lobule_pt)
class Alar_Rim_right_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.alar_rim_right_pt"
bl_label = "Alar Rim right"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Alar Rim right' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Alar Rim right', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Alar_Rim_right_pt)
class Alar_Rim_left_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.alar_rim_left_pt"
bl_label = "Alar Rim left"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Alar Rim left' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Alar Rim left', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Alar_Rim_left_pt)
class Columella_right_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.columella_right_pt"
bl_label = "Columella right"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Columella right' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Columella right', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Columella_right_pt)
class Columella_left_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.columella_left_pt"
bl_label = "Columella left"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Columella left' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Columella left', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Columella_left_pt)
class Trichion_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.trichion_pt"
bl_label = "Trichion"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Trichion' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Trichion', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Trichion_pt)
class Submental_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.submental_pt"
bl_label = "Submental"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Submental' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Submental', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Submental_pt)
class Supraglabella_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.supraglabella_pt"
bl_label = "Supraglabella"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Supraglabella' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Supraglabella', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Supraglabella_pt)
class Glabella_pt(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.glabella_pt"
bl_label = "Glabella"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'Glabella' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CriaPontoDef('Glabella', 'Anatomical Points - Soft Tissue')
TestaPontoCollDef()
return {'FINISHED'}
bpy.utils.register_class(Glabella_pt)
# COPIA FACE
def CopiaFaceDef():
bpy.context.object.name = "SoftTissueDynamic"
bpy.ops.object.duplicate()
bpy.context.object.name = "SoftTissueDynamic_COPY"
FaceCopiada = bpy.data.objects['SoftTissueDynamic_COPY']
FaceCopiada.hide_viewport=True
FaceOriginal = bpy.data.objects['SoftTissueDynamic']
FaceOriginal.select_set(True)
bpy.context.view_layer.objects.active = FaceOriginal
class CopiaFace(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.copia_face"
bl_label = "Copy Face"
bl_options = {'REGISTER', 'UNDO'}
@classmethod
def poll(cls, context):
found = 'SoftTissueDynamic_COPY' in bpy.data.objects
if found == False:
return True
else:
if found == True:
return False
def execute(self, context):
CopiaFaceDef()
return {'FINISHED'}
bpy.utils.register_class(CopiaFace)
def CalculaDistsNarizDef():
try:
bpy.ops.object.mode_set(mode = 'OBJECT')
except:
print("Já em modo objeto.")
try:
ListaPontos = ['Tip of Nose', 'Subnasale','Radix', 'Anterior Nostril left', 'Posterior Nostril left', 'Anterior Nostril right', 'Posterior Nostril right','Rhinion', 'Alar Groove right', 'Alar Groove left', 'Supratip', 'Infratip Lobule', 'Alar Rim right', 'Alar Rim left', 'Columella right', 'Columella left', 'Alar Cheek Groove right', 'Alar Cheek Groove left']
for i in ListaPontos:
# print("HÁ O NOME!", i.name)
try:
bpy.ops.object.select_all(action='DESELECT')
ObjetoAtual = bpy.data.objects[i]
ObjetoAtual.select_set(True)
bpy.context.view_layer.objects.active = ObjetoAtual
bpy.ops.object.duplicate()
NovoNome = str(bpy.data.objects[i].name)+"_COPY_MEDIDAS"
bpy.context.object.name = NovoNome
bpy.ops.object.parent_clear(type='CLEAR_KEEP_TRANSFORM')
bpy.ops.object.select_all(action='DESELECT')
except:
print("Erro ao tentar copiar o objeto:", i)
except:
print("Erro ao tentar copiar os objetos.")
try:
DistRadixTip = DistanciaObjetos("Radix_COPY_MEDIDAS", "Tip of Nose_COPY_MEDIDAS")
CursorToSelectedObjs("Alar Cheek Groove right", "Alar Cheek Groove left")
print("HHHHHHHHAAHAHAHHAHAHA")
bpy.ops.mesh.primitive_uv_sphere_add(radius=1, view_align=False, enter_editmode=False)
bpy.context.object.name = "Alar Cheek Groove MEIO"
DistTipAlar = DistanciaObjetos("Tip of Nose_COPY_MEDIDAS", "Alar Cheek Groove MEIO")
ProporcaoNariz = DistTipAlar / DistRadixTip
print("ProporcaoNariz", ProporcaoNariz)
bpy.types.Scene.rhin_prop_nariz = bpy.props.StringProperty \
(
name = "Nose Proportion",
description = "Nose Proportion",
default = str(round(ProporcaoNariz, 2))
)
# Apaga objeto criados
bpy.ops.object.select_all(action='DESELECT')
ObjetoAtual = bpy.data.objects["Alar Cheek Groove MEIO"]
ObjetoAtual.select_set(True)
bpy.context.view_layer.objects.active = ObjetoAtual
bpy.ops.object.delete(use_global=False)
except:
print("Problemas ao calcular a proporção do nariz.")
try:
# CRIA PONTOS PARA CALCULAR ANGULO ESQUERDO
bpy.ops.object.select_all(action='DESELECT')
ObjetoAtual = bpy.data.objects["Posterior Nostril left_COPY_MEDIDAS"]
ObjetoAtual.select_set(True)
bpy.context.view_layer.objects.active = ObjetoAtual
bpy.ops.object.duplicate()
NovoNome = "Posterior Nostril left_ABAIXO"
bpy.context.object.name = NovoNome
bpy.ops.transform.translate(value=(0, 0, -80))
bpy.ops.object.select_all(action='DESELECT')
# CALCULA ANGULO
AnguloNasolabial = CalculaAngulo("Anterior Nostril left_COPY_MEDIDAS", "Posterior Nostril left_COPY_MEDIDAS", "Posterior Nostril left_ABAIXO")
# AnguloNasolabial = CalculaAngulo("Radix_COPY_MEDIDAS", "Tip of Nose_COPY_MEDIDAS", "Subnasale_COPY_MEDIDAS")
bpy.types.Scene.rhin_angulo_nasolabial_esquerdo = bpy.props.StringProperty \
(
name = "Nasolabial Angle left",
description = "Nasolabial Angle left",
default = str(AnguloNasolabial) #+"º"
)
# Apaga objeto criados
bpy.ops.object.select_all(action='DESELECT')
ObjetoAtual = bpy.data.objects["Posterior Nostril left_ABAIXO"]
ObjetoAtual.select_set(True)
bpy.context.view_layer.objects.active = ObjetoAtual
bpy.ops.object.delete(use_global=False)
except:
print("Não foi possível fazer o cálculo do ângulo nasolabial ESQUERDO.")
try:
# CRIA PONTOS PARA CALCULAR ANGULO DIREITO
bpy.ops.object.select_all(action='DESELECT')
ObjetoAtual = bpy.data.objects["Posterior Nostril right_COPY_MEDIDAS"]
ObjetoAtual.select_set(True)
bpy.context.view_layer.objects.active = ObjetoAtual
bpy.ops.object.duplicate()
NovoNome = "Posterior Nostril right_ABAIXO"
bpy.context.object.name = NovoNome
bpy.ops.transform.translate(value=(0, 0, -80))
bpy.ops.object.select_all(action='DESELECT')
# CALCULA ANGULO
AnguloNasolabial = CalculaAngulo("Anterior Nostril right_COPY_MEDIDAS", "Posterior Nostril right_COPY_MEDIDAS", "Posterior Nostril right_ABAIXO")
# AnguloNasolabial = CalculaAngulo("Radix_COPY_MEDIDAS", "Tip of Nose_COPY_MEDIDAS", "Subnasale_COPY_MEDIDAS")
bpy.types.Scene.rhin_angulo_nasolabial_direito = bpy.props.StringProperty \
(
name = "Nasolabial Angle right",
description = "Nasolabial Angle right",
default = str(AnguloNasolabial) #+"º"
)
# Apaga objeto criados
bpy.ops.object.select_all(action='DESELECT')
ObjetoAtual = bpy.data.objects["Posterior Nostril right_ABAIXO"]
ObjetoAtual.select_set(True)
bpy.context.view_layer.objects.active = ObjetoAtual
bpy.ops.object.delete(use_global=False)
except:
print("Não foi possível fazer o cálculo do ângulo nasolabial DIREITO.")
try:
# CALCULA ALAR RIM - COLUMELLA FACTOR - ESQUERDA
AnteriorNostrilLeft = bpy.data.objects["Anterior Nostril left_COPY_MEDIDAS"].location[2]
PosteriorNostrilLeft = bpy.data.objects["Posterior Nostril left_COPY_MEDIDAS"].location[2]
NostrileftMedia = (AnteriorNostrilLeft + PosteriorNostrilLeft) / 2
AlarRimLeft = bpy.data.objects["Alar Rim left_COPY_MEDIDAS"].location[2]
FatorAlarRimLeft = abs(AlarRimLeft - NostrileftMedia)
bpy.types.Scene.rhin_alar_rim_med_esquerdo = bpy.props.StringProperty \
(
name = "Alar Rim - Nostril",
description = "Alar Rim - Nostril",
default = str(round(FatorAlarRimLeft, 2))
)
ColumellaLeft = bpy.data.objects["Columella left_COPY_MEDIDAS"].location[2]
FatorColumellaLeft = abs(ColumellaLeft - NostrileftMedia)
print("FatoColumellaLeft:", FatorColumellaLeft)
bpy.types.Scene.rhin_columella_med_esquerdo = bpy.props.StringProperty \
(
name = "Columella - Nostril",
description = "Columella - Nostril",
default = str(round(FatorColumellaLeft, 2))
)
except:
print("Não foi possível fazer o cálculo do fator Alar Rim-Columella - ESQUERDO.")
try:
# CALCULA ALAR RIM - COLUMELLA FACTOR - DIREITA
AnteriorNostrilRight = bpy.data.objects["Anterior Nostril right_COPY_MEDIDAS"].location[2]
PosteriorNostrilRight = bpy.data.objects["Posterior Nostril right_COPY_MEDIDAS"].location[2]
NonstrilRightMedia = (AnteriorNostrilRight + PosteriorNostrilRight) / 2
AlarRimRight = bpy.data.objects["Alar Rim right_COPY_MEDIDAS"].location[2]
print("AQUI!!!")
#print(FatorAlarRimRight)
FatorAlarRimRight = abs(AlarRimRight - NonstrilRightMedia)
bpy.types.Scene.rhin_alar_rim_med_direito = bpy.props.StringProperty \
(
name = "Alar Rim - Nostril",
description = "Alar Rim - Nostril",
default = str(round(FatorAlarRimRight, 2))
)
ColumellaRight = bpy.data.objects["Columella right_COPY_MEDIDAS"].location[2]
FatorColumellaRight = abs(ColumellaRight - NonstrilRightMedia)
print("FatoColumellaRight:", FatorColumellaRight)
bpy.types.Scene.rhin_columella_med_direito = bpy.props.StringProperty \
(
name = "Columella - Nostril",
description = "Columella - Nostril",
default = str(round(FatorColumellaRight, 2))
)
except:
print("Não foi possível fazer o cálculo do fator Alar Rim-Columella - DIREITO.")
# APAGA Pontos criados
try:
for i in ListaPontos:
# print("HÁ O NOME!", i.name)
try:
bpy.ops.object.select_all(action='DESELECT')
NomeAtual = str(bpy.data.objects[i].name)+"_COPY_MEDIDAS"
ObjetoAtual = bpy.data.objects[NomeAtual]
ObjetoAtual.select_set(True)
bpy.context.view_layer.objects.active = ObjetoAtual
bpy.ops.object.delete(use_global=False)
bpy.ops.object.select_all(action='DESELECT')
except:
print("Houve problema ao deletar o ponto:", i)
except:
print("Houve algum problema ao deletar os pontos.")
class CalculaDistsNariz(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.dist_nariz"
bl_label = "Nose dists"
def execute(self, context):
try:
OriginalBool = bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport
if bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport == True:
print("XXXXXXXXXX")
bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport = False
except:
print("A coleção Anatomical Points - Soft Tissue não existe!")
CalculaDistsNarizDef()
try:
if OriginalBool == False:
bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport = False
else:
bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport = True
except:
print("A coleção Anatomical Points - Soft Tissue não existe!")
return {'FINISHED'}
bpy.utils.register_class(CalculaDistsNariz)
class MostraOcultaPontos(bpy.types.Operator):
"""Tooltip"""
bl_idname = "object.rhin_mostra_oculta_pontos"
bl_label = "Nose dists"
def execute(self, context):
try:
if bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport == False:
print("HIDE FALSE")
bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport = True
else: #bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport == True:
print("HIDE TRUE")
bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport = False
# bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport = False
except:
print("A coleção Anatomical Points - Soft Tissue não existe!")
return {'FINISHED'}
bpy.utils.register_class(MostraOcultaPontos)
def GeraGuiaNarizDef():
Rosto = bpy.data.objects["SoftTissueDynamic"]
Pontos = ['Supraglabella', 'ST Glabella', 'Radix', 'Rhinion', 'Supratip', 'Tip of Nose', 'Columella', 'Subnasale', 'Upper Lip']
coords = []
for i in Pontos:
VetorAtual = bpy.data.objects[i].location
VetX = bpy.data.objects[i].location[0]
VetY = bpy.data.objects[i].location[1]
VetZ = bpy.data.objects[i].location[2]
coords.append((VetX, VetY, VetZ))
curveData = bpy.data.curves.new('myCurve', type='CURVE')
curveData.dimensions = '3D'
# curveData.resolution_u = 6
curveData.resolution_u = 36
# map coords to spline
polyline = curveData.splines.new('BEZIER')
polyline.bezier_points.add(len(coords)-1)
# for i, coord in enumerate(coords):
# x,y,z = coord
# polyline.points[i].co = (x, y, z, 1)
from bpy_extras.io_utils import unpack_list
polyline.bezier_points.foreach_set("co", unpack_list(coords))
# Apaga pontos
bpy.ops.object.select_all(action='DESELECT')
#for i in Pontos:
# bpy.data.objects[i].select_set(True)
#bpy.ops.object.delete(use_global=False)
bpy.data.collections['Anatomical Points - Soft Tissue'].hide_viewport = True
# Cria Linha
curveOB = bpy.data.objects.new('myCurve', curveData)
# attach to scene and validate context
scn = bpy.context.scene
# scn.objects.link(curveOB)
bpy.context.collection.objects.link(curveOB)
#scn.collection.objects.link(curveOB) # Esta opção faz com que o objeto criado vá para a Scene Collection!
bpy.ops.object.select_all(action='DESELECT')
bpy.context.view_layer.objects.active = curveOB
curveOB.select_set(True)
bpy.ops.object.editmode_toggle()
bpy.ops.curve.select_all(action='SELECT')
bpy.ops.curve.handle_type_set(type='AUTOMATIC')
#bpy.ops.curve.make_segment()
bpy.ops.object.editmode_toggle()
bpy.ops.object.modifier_add(type='SHRINKWRAP')
bpy.context.object.modifiers["Shrinkwrap"].target = Rosto
bpy.context.object.modifiers["Shrinkwrap"].offset = 0.01
bpy.context.object.modifiers["Shrinkwrap"].wrap_mode = 'ABOVE_SURFACE'
#bpy.context.space_data.context = 'MODIFIER'
bpy.ops.object.modifier_apply(apply_as='DATA', modifier="Shrinkwrap")
#bpy.context.space_data.context = 'DATA'
bpy.context.object.data.bevel_depth = 4
bpy.ops.object.modifier_add(type='REMESH')
bpy.context.object.modifiers["Remesh"].octree_depth = 6
bpy.context.object.modifiers["Remesh"].mode = 'SMOOTH'
GuiaBaseNome = str("GuiaBase-"+strftime("%Y%m%d%H%M%S", gmtime()))
bpy.context.object.name = GuiaBaseNome
bpy.ops.object.select_all(action='DESELECT')
Rosto.select_set(True)
bpy.context.view_layer.objects.active = Rosto
bpy.ops.object.duplicate()
bpy.context.object.active_shape_key_index = 0 # Seleciona o primeiro para apagar e manter o segundo como forma.
bpy.ops.object.shape_key_remove(all=False)
bpy.ops.object.shape_key_remove(all=False)
bpy.ops.object.modifier_add(type='REMESH')
bpy.context.object.modifiers["Remesh"].mode = 'SMOOTH'
bpy.context.object.modifiers["Remesh"].octree_depth = 8
bpy.context.object.modifiers["Remesh"].scale = 0.99
bpy.ops.object.modifier_apply(apply_as='DATA', modifier="Remesh")
NomeFaceNova = str("FaceDelete-"+strftime("%Y%m%d%H%M%S", gmtime()))
# strftime("%Y-%m-%d %H:%M:%S", gmtime()))
bpy.context.object.name = NomeFaceNova
bpy.ops.object.select_all(action='DESELECT')
bpy.data.objects[NomeFaceNova].select_set(True)
bpy.data.objects[GuiaBaseNome].select_set(True)
bpy.context.view_layer.objects.active = bpy.data.objects[NomeFaceNova]
bpy.ops.object.booleana_osteo_geral()