Add option not to print debug/info in ngon_tessellate.
That func can be called a lot, generating a lot of noise in the console...
This commit is contained in:
@@ -239,7 +239,7 @@ def edge_loops_from_edges(mesh, edges=None):
|
|||||||
return line_polys
|
return line_polys
|
||||||
|
|
||||||
|
|
||||||
def ngon_tessellate(from_data, indices, fix_loops=True):
|
def ngon_tessellate(from_data, indices, fix_loops=True, debug_print=True):
|
||||||
"""
|
"""
|
||||||
Takes a polyline of indices (fgon) and returns a list of face
|
Takes a polyline of indices (fgon) and returns a list of face
|
||||||
index lists. Designed to be used for importers that need indices for an
|
index lists. Designed to be used for importers that need indices for an
|
||||||
@@ -405,7 +405,8 @@ def ngon_tessellate(from_data, indices, fix_loops=True):
|
|||||||
fill = [[vert_map[i] for i in reversed(f)] for f in fill]
|
fill = [[vert_map[i] for i in reversed(f)] for f in fill]
|
||||||
|
|
||||||
if not fill:
|
if not fill:
|
||||||
print('Warning Cannot scanfill, fallback on a triangle fan.')
|
if debug_print:
|
||||||
|
print('Warning Cannot scanfill, fallback on a triangle fan.')
|
||||||
fill = [[0, i - 1, i] for i in range(2, len(indices))]
|
fill = [[0, i - 1, i] for i in range(2, len(indices))]
|
||||||
else:
|
else:
|
||||||
# Use real scanfill.
|
# Use real scanfill.
|
||||||
|
|||||||
Reference in New Issue
Block a user