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>2011-01-18 04:58:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-18 04:58:49 +0300
commit84c40946e4197841c6345af32bab15524742fb6b (patch)
treeea7de2a1c3acd166d8f9acbfd347eb7fd68cabce /io_scene_x3d
parentee29d3dcc6e025c4627ed9edfb4c32413a4f0702 (diff)
correct bad spelling; 'indicies' --> 'indices'
Diffstat (limited to 'io_scene_x3d')
-rw-r--r--io_scene_x3d/import_x3d.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_x3d/import_x3d.py b/io_scene_x3d/import_x3d.py
index f2885943..7fdb98c2 100644
--- a/io_scene_x3d/import_x3d.py
+++ b/io_scene_x3d/import_x3d.py
@@ -1695,7 +1695,7 @@ def importMesh_IndexedFaceSet(geom, bpyima, ancestry):
bpymesh.faces.add(len(faces))
bpymesh.faces.foreach_set("vertices_raw", [a for f in faces for a in (f + [0] if len(f) == 3 else f)]) # XXX25 speed
except KeyError:
- print("one or more vert indicies out of range. corrupt file?")
+ print("one or more vert indices out of range. corrupt file?")
#for f in faces:
# bpymesh.faces.extend(faces, smooth=True)
@@ -1716,7 +1716,7 @@ def importMesh_IndexedFaceSet(geom, bpyima, ancestry):
for i, f in enumerate(uvlay.data):
f.image = bpyima
- fuv = faces_uv[i] # uv indicies
+ fuv = faces_uv[i] # uv indices
for j, uv in enumerate(f.uv):
# print(fuv, j, len(ifs_texpoints))
try: