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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mesh_looptools.py')
-rw-r--r--mesh_looptools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesh_looptools.py b/mesh_looptools.py
index 06a1cc4d..49a26c48 100644
--- a/mesh_looptools.py
+++ b/mesh_looptools.py
@@ -2815,7 +2815,7 @@ def gstretch_match_loops_strokes(loops, strokes, object, bm_mod):
# calculate loop centers
loop_centers = []
- bm_mod.verts.ensure_lookup_table() # to work in 2.73
+ bm_mod.verts.ensure_lookup_table()
for loop in loops:
center = mathutils.Vector()
for v_index in loop[0]: