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>2011-06-18 15:40:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-06-18 15:40:44 +0400
commit2d01cb5b279031de45889d443ee89762a02566eb (patch)
treec1df28cb0b85476ae30ba50ad2a8118b6c6f3515 /release/scripts/modules/bpy_extras/mesh_utils.py
parent1283b07409ae6656d8a4064a6236efdcae59b7a0 (diff)
fix for error caused with module relocation - broke loading ngons in OBJ files
Diffstat (limited to 'release/scripts/modules/bpy_extras/mesh_utils.py')
-rw-r--r--release/scripts/modules/bpy_extras/mesh_utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/modules/bpy_extras/mesh_utils.py b/release/scripts/modules/bpy_extras/mesh_utils.py
index b6d8a1fcf16..e026910fb43 100644
--- a/release/scripts/modules/bpy_extras/mesh_utils.py
+++ b/release/scripts/modules/bpy_extras/mesh_utils.py
@@ -267,6 +267,7 @@ def ngon_tesselate(from_data, indices, fix_loops=True):
fix_loops: If this is enabled polylines that use loops to make multiple polylines are delt with correctly.
'''
+ from mathutils.geometry import tesselate_polygon
from mathutils import Vector
vector_to_tuple = Vector.to_tuple