From 2791675c5295f5c065fc806170001b03d7c59a90 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 21 Mar 2012 21:44:55 +0000 Subject: correct spelling tessellate --- io_scene_obj/import_obj.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io_scene_obj') 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]], -- cgit v1.2.3