-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Create library function separate_loose_mesh.py
- Loading branch information
Showing
3 changed files
with
155 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# ##### 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 collections | ||
|
||
import bpy | ||
|
||
from sverchok.node_tree import SverchCustomTreeNode | ||
from sverchok.data_structure import zip_long_repeat | ||
from sverchok.utils.nodes_mixins.sockets_config import ModifierLiteNode | ||
|
||
def separate_loose_mesh(verts_in, poly_edge_in): | ||
verts_out = [] | ||
poly_edge_out = [] | ||
poly_edge_old_indexes_out = [] # faces with old indices | ||
|
||
# build links | ||
node_links = {} | ||
for edge_face in poly_edge_in: | ||
for i in edge_face: | ||
if i not in node_links: | ||
node_links[i] = set() | ||
node_links[i].update(edge_face) | ||
|
||
nodes = set(node_links.keys()) | ||
n = nodes.pop() | ||
node_set_list = [set([n])] | ||
node_stack = collections.deque() | ||
node_stack_append = node_stack.append | ||
node_stack_pop = node_stack.pop | ||
node_set = node_set_list[-1] | ||
# find separate sets | ||
while nodes: | ||
for node in node_links[n]: | ||
if node not in node_set: | ||
node_stack_append(node) | ||
if not node_stack: # new mesh part | ||
n = nodes.pop() | ||
node_set_list.append(set([n])) | ||
node_set = node_set_list[-1] | ||
else: | ||
while node_stack and n in node_set: | ||
n = node_stack_pop() | ||
nodes.discard(n) | ||
node_set.add(n) | ||
# create new meshes from sets, new_pe is the slow line. | ||
if len(node_set_list) > 1: | ||
for node_set in node_set_list: | ||
mesh_index = sorted(node_set) | ||
vert_dict = {j: i for i, j in enumerate(mesh_index)} | ||
new_vert = [verts_in[i] for i in mesh_index] | ||
new_pe = [[vert_dict[n] for n in fe] | ||
for fe in poly_edge_in | ||
if fe[0] in node_set] | ||
old_pe = [fe for fe in poly_edge_in | ||
if fe[0] in node_set] | ||
verts_out.append(new_vert) | ||
poly_edge_out.append(new_pe) | ||
poly_edge_old_indexes_out.append(old_pe) | ||
elif node_set_list: # no reprocessing needed | ||
verts_out.append(verts_in) | ||
poly_edge_out.append(poly_edge_in) | ||
poly_edge_old_indexes_out.append(poly_edge_in) | ||
|
||
return verts_out, poly_edge_out, poly_edge_old_indexes_out | ||
|