PyAPI: update for change in tessellate_polygon

This commit is contained in:
Campbell Barton 2019-10-10 11:30:50 +11:00
parent 5910f9f9e9
commit 3c5bf7d1dc
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ def ngon_tessellate(from_data, indices, fix_loops=True, debug_print=True):
# draw_loops(loop_list)
#raise Exception("done loop")
# map to original indices
fill = [[vert_map[i] for i in reversed(f)] for f in fill]
fill = [[vert_map[i] for i in f] for f in fill]
if not fill:
if debug_print: