Skip to content

Commit

Permalink
Merge pull request #441 from Weisl/#440
Browse files Browse the repository at this point in the history
#440 Error for Auto Convex
  • Loading branch information
Weisl authored Aug 13, 2023
2 parents 68012d4 + 64567dd commit 5583329
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bmesh_operations/mesh_edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ def bmesh_join(list_of_bmeshes, list_of_matrices, normal_update=False):

if bm_to_add.faces:
for face in bm_to_add.faces:
add_face(tuple(bm.verts[i.index + offset] for i in face.verts))
try:
add_face(tuple(bm.verts[i.index + offset] for i in face.verts))
except:
pass
bm.faces.index_update()

if bm_to_add.edges:
Expand Down
2 changes: 2 additions & 0 deletions bmesh_operations/mesh_split_by_island.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import bpy
import bmesh
import sys


# Simple - get all linked faces
def get_linked_faces(f):
sys.setrecursionlimit(10**6)
if f.tag:
# If the face is already tagged, return empty list
return []
Expand Down

0 comments on commit 5583329

Please sign in to comment.