From 3c5bf7d1dc1ee8fcb8d68327e94a442e69b0ef5a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 10 Oct 2019 11:30:50 +1100 Subject: PyAPI: update for change in tessellate_polygon --- release/scripts/modules/bpy_extras/mesh_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release/scripts/modules') diff --git a/release/scripts/modules/bpy_extras/mesh_utils.py b/release/scripts/modules/bpy_extras/mesh_utils.py index 7c5e6264c7a..f70f1eacead 100644 --- a/release/scripts/modules/bpy_extras/mesh_utils.py +++ b/release/scripts/modules/bpy_extras/mesh_utils.py @@ -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: -- cgit v1.2.3