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-10-04 12:56:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-04 12:56:57 +0400
commitb63d9bcaabe646e72a2369dd36992aea2094d1df (patch)
tree7815432a38a0429829be50a705339c0fcf3cf8bb /io_anim_bvh
parent8aa1b14c4485a3058bf332d2389bdef289256dee (diff)
fix for various errors in scripts
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 a21a1c1c..f83ef7f2 100644
--- a/io_anim_bvh/import_bvh.py
+++ b/io_anim_bvh/import_bvh.py
@@ -387,7 +387,7 @@ def bvh_node_dict2armature(context,
bone.head = bvh_node.rest_head_world
bone.tail = bvh_node.rest_tail_world
- # ZERO AREA BONES.
+ # Zero Length Bones! (an exceptional case)
if (bone.head - bone.tail).length < 0.001:
print("\tzero length bone found:", bone.name)
if bvh_node.parent: