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:
authorCampbell Barton <ideasman42@gmail.com>2012-03-22 01:44:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-22 01:44:55 +0400
commit2791675c5295f5c065fc806170001b03d7c59a90 (patch)
tree57f41dd0ae3dc85194f9fbc5cdf58aa920dc5b79 /io_scene_obj
parent3d78b23ab619f75f65b5a528ecdf67a2c777ab8a (diff)
correct spelling tessellate
Diffstat (limited to 'io_scene_obj')
-rw-r--r--io_scene_obj/import_obj.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_obj/import_obj.py b/io_scene_obj/import_obj.py
index 40da59db..b3be1f45 100644
--- a/io_scene_obj/import_obj.py
+++ b/io_scene_obj/import_obj.py
@@ -428,7 +428,7 @@ def create_mesh(new_objects,
Takes all the data gathered and generates a mesh, adding the new object to new_objects
deals with fgons, sharp edges and assigning materials
'''
- from bpy_extras.mesh_utils import ngon_tesselate
+ from bpy_extras.mesh_utils import ngon_tessellate
if not has_ngons:
use_ngons = False
@@ -490,7 +490,7 @@ def create_mesh(new_objects,
# FGons into triangles
if has_ngons and len_face_vert_loc_indices > 4:
- ngon_face_indices = ngon_tesselate(verts_loc, face_vert_loc_indices)
+ ngon_face_indices = ngon_tessellate(verts_loc, face_vert_loc_indices)
faces.extend([([face_vert_loc_indices[ngon[0]],
face_vert_loc_indices[ngon[1]],
face_vert_loc_indices[ngon[2]],