-
Notifications
You must be signed in to change notification settings - Fork 235
/
Copy pathbmesh_analyzer_big.py
152 lines (130 loc) · 6.24 KB
/
bmesh_analyzer_big.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
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
import bpy
import bmesh
from bpy.props import BoolProperty
from sverchok.utils.sv_bmesh_utils import bmesh_from_pydata
from sverchok.node_tree import SverchCustomTreeNode
from sverchok.data_structure import (updateNode, match_long_repeat)
class SvBManalyzinNode(SverchCustomTreeNode, bpy.types.Node):
''' BMesh In and props two in one '''
bl_idname = 'SvBManalyzinNode'
bl_label = 'BMesh Analyze In'
bl_icon = 'OUTLINER_OB_EMPTY'
sv_icon = 'SV_ANALYZE_BMESH'
mode1: BoolProperty(name='normal_update', default=True, update=updateNode)
def sv_init(self, context):
si, so = self.inputs.new, self.outputs.new
si('SvStringsSocket', 'bmesh_list')
si('SvVerticesSocket', 'Vert')
si('SvStringsSocket', 'Edge')
si('SvStringsSocket', 'Poly')
so('SvStringsSocket', 'mesh-volume')
so('SvStringsSocket', 'vert-edge angle')
so('SvStringsSocket', 'vert-shell factor')
so('SvStringsSocket', 'vert-is boundary')
so('SvStringsSocket', 'vert-is manifold')
so('SvStringsSocket', 'vert-is wire')
so('SvVerticesSocket', 'vert-normal')
so('SvStringsSocket', 'edge-face angle signed')
so('SvStringsSocket', 'edge-length')
so('SvStringsSocket', 'edge-is boundary')
so('SvStringsSocket', 'edge-is contiguous')
so('SvStringsSocket', 'edge-is convex')
so('SvStringsSocket', 'edge-is manifold')
so('SvStringsSocket', 'edge-is wire')
so('SvStringsSocket', 'face-area')
so('SvVerticesSocket', 'face-center bounds')
so('SvVerticesSocket', 'face-center median')
so('SvVerticesSocket', 'face-center median weighted')
so('SvStringsSocket', 'face-perimeter')
so('SvVerticesSocket', 'face-tangent edge')
so('SvVerticesSocket', 'face-tangent edge diagonal')
so('SvVerticesSocket', 'face-tangent edge pair')
so('SvVerticesSocket', 'face-tangent vert diagonal')
so('SvVerticesSocket', 'face-normal')
so('SvStringsSocket', 'bmesh_list')
self.width = 230
def draw_buttons_ext(self, context, layout):
row = layout.row(align=True)
row.prop(self, "mode1", text="Update normals")
def process(self):
bmL, V, E, P = self.inputs
Val = bmL.sv_get() if bmL.is_linked else []
o1,o2,o3,o4,o5,o6,o7,o8,o9,o10,o11,o12,o13,o14,o15,o16,o17,o18,o19,o20,o21,o22,o23,o24,o25 = self.outputs
if V.is_linked:
for v, e, f in zip(*match_long_repeat([V.sv_get(), E.sv_get([[]]), P.sv_get([[]])])):
bm = bmesh_from_pydata(v, e, f)
Val.append(bm)
if self.mode1:
for bm in Val:
bm.normal_update()
if o1.is_linked:
o1.sv_set([[bm.calc_volume(signed=False) for bm in Val]])
if o2.is_linked:
o2.sv_set([[vert.calc_edge_angle(-1) for vert in bm.verts] for bm in Val])
if o3.is_linked:
o3.sv_set([[vert.calc_shell_factor() for vert in bm.verts] for bm in Val])
if o4.is_linked:
o4.sv_set([[vert.is_boundary for vert in bm.verts] for bm in Val])
if o5.is_linked:
o5.sv_set([[vert.is_manifold for vert in bm.verts] for bm in Val])
if o6.is_linked:
o6.sv_set([[vert.is_wire for vert in bm.verts] for bm in Val])
if o7.is_linked:
o7.sv_set([[vert.normal[:] for vert in bm.verts] for bm in Val])
if o8.is_linked:
o8.sv_set([[edge.calc_face_angle_signed(0) for edge in bm.edges] for bm in Val])
if o9.is_linked:
o9.sv_set([[edge.calc_length() for edge in bm.edges] for bm in Val])
if o10.is_linked:
o10.sv_set([[edge.is_boundary for edge in bm.edges] for bm in Val])
if o11.is_linked:
o11.sv_set([[edge.is_contiguous for edge in bm.edges] for bm in Val])
if o12.is_linked:
o12.sv_set([[edge.is_convex for edge in bm.edges] for bm in Val])
if o13.is_linked:
o13.sv_set([[edge.is_manifold for edge in bm.edges] for bm in Val])
if o14.is_linked:
o14.sv_set([[edge.is_wire for edge in bm.edges] for bm in Val])
if o15.is_linked:
o15.sv_set([[face.calc_area() for face in bm.faces] for bm in Val])
if o16.is_linked:
o16.sv_set([[face.calc_center_bounds()[:] for face in bm.faces] for bm in Val])
if o17.is_linked:
o17.sv_set([[face.calc_center_median()[:] for face in bm.faces] for bm in Val])
if o18.is_linked:
o18.sv_set([[face.calc_center_median_weighted()[:] for face in bm.faces] for bm in Val])
if o19.is_linked:
o19.sv_set([[face.calc_perimeter() for face in bm.faces] for bm in Val])
if o20.is_linked:
o20.sv_set([[face.calc_tangent_edge()[:] for face in bm.faces] for bm in Val])
if o21.is_linked:
o21.sv_set([[face.calc_tangent_edge_diagonal()[:] for face in bm.faces] for bm in Val])
if o22.is_linked:
o22.sv_set([[face.calc_tangent_edge_pair()[:] for face in bm.faces] for bm in Val])
if o23.is_linked:
o23.sv_set([[face.calc_tangent_vert_diagonal()[:] for face in bm.faces] for bm in Val])
if o24.is_linked:
o24.sv_set([[face.normal[:] for face in bm.faces] for bm in Val])
if o25.is_linked:
o25.sv_set(Val)
def register():
bpy.utils.register_class(SvBManalyzinNode)
def unregister():
bpy.utils.unregister_class(SvBManalyzinNode)