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_anim_bvh
parentee29d3dcc6e025c4627ed9edfb4c32413a4f0702 (diff)
correct bad spelling; 'indicies' --> 'indices'
Diffstat (limited to 'io_anim_bvh')
-rw-r--r--io_anim_bvh/import_bvh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_anim_bvh/import_bvh.py b/io_anim_bvh/import_bvh.py
index 5a0c0fcf..464b76bf 100644
--- a/io_anim_bvh/import_bvh.py
+++ b/io_anim_bvh/import_bvh.py
@@ -38,7 +38,7 @@ class bvh_node_class(object):
'rest_tail_world', # worldspace rest location for the tail of this node
'rest_tail_local', # worldspace rest location for the tail of this node
'channels', # list of 6 ints, -1 for an unused channel, otherwise an index for the BVH motion data lines, lock triple then rot triple
- 'rot_order', # a triple of indicies as to the order rotation is applied. [0,1,2] is x/y/z - [None, None, None] if no rotation.
+ 'rot_order', # a triple of indices as to the order rotation is applied. [0,1,2] is x/y/z - [None, None, None] if no rotation.
'rot_order_str', # same as above but a string 'XYZ' format.
'anim_data', # a list one tuple's one for each frame. (locx, locy, locz, rotx, roty, rotz), euler rotation ALWAYS stored xyz order, even when native used.
'has_loc', # Conveinience function, bool, same as (channels[0]!=-1 or channels[1]!=-1 channels[2]!=-1)