Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-10-10 03:30:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-10-10 03:30:50 +0300
commit3c5bf7d1dc1ee8fcb8d68327e94a442e69b0ef5a (patch)
tree6c03a88fba9c5c3c82e3e885915c720e401ca1c2 /release/scripts/modules/bpy_extras/mesh_utils.py
parent5910f9f9e914e0e2e99b63a1a329f04655ba866d (diff)
PyAPI: update for change in tessellate_polygon
Diffstat (limited to 'release/scripts/modules/bpy_extras/mesh_utils.py')
-rw-r--r--release/scripts/modules/bpy_extras/mesh_utils.py2
1 files changed, 1 insertions, 1 deletions
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: