Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2006-11-07 02:51:37 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2006-11-07 02:51:37 +0300
commitb48c514db87d360ddfcadfcde582c0cae9344d6c (patch)
treeedd7df52b4211a4a8053733d43d49ea1b2aae915 /source/blender/blenkernel/BKE_armature.h
parent10a4b1ad8ba1aeb951be173e8f5415f8b75e329e (diff)
Added an option in the IK constraint to disable stretching, useful
in rigs with layered IK constraints. Also removed the tolerance setting, this value wasn't used in the solver anymore.
Diffstat (limited to 'source/blender/blenkernel/BKE_armature.h')
-rw-r--r--source/blender/blenkernel/BKE_armature.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_armature.h b/source/blender/blenkernel/BKE_armature.h
index 1ce5f7d0f03..684e69e7694 100644
--- a/source/blender/blenkernel/BKE_armature.h
+++ b/source/blender/blenkernel/BKE_armature.h
@@ -63,8 +63,8 @@ typedef struct PoseTree
int *parent; /* and their parents */
int totchannel; /* number of pose channels */
float (*basis_change)[3][3]; /* basis change result from solver */
- float tolerance; /* tolerance from the constraint */
int iterations; /* iterations from the constraint */
+ int stretch; /* disable stretching */
} PoseTree;
/* Core armature functionality */