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:
authorTon Roosendaal <ton@blender.org>2005-08-27 21:04:29 +0400
committerTon Roosendaal <ton@blender.org>2005-08-27 21:04:29 +0400
commiteb1f65768a742fce55dd755e9c51d4be2f73b5bc (patch)
tree1dff3d1bbd979d53620a5bade793a580d3486c49 /source/blender/blenkernel/BKE_armature.h
parent8f5bff6051025bbd4d5e0a127f7fef09ef226c1a (diff)
IK work-in-progress commit;
- Removed old convention that only allowed one "IK" connection for Bones in a joint. Was highly frustrating for editing trees or branches. In a next commit, there will be a different method to define IK target and IK root, so this option actually will become "Connect Bone" or so. - the IK group name is gone, now is just an option "Tree IK". When IK chains share a root they'll form a tree. Todo is preventing conflicts here (will be for editor to define IK Root) - Adding new IK constraint with CTRL+I activates Constraint
Diffstat (limited to 'source/blender/blenkernel/BKE_armature.h')
-rw-r--r--source/blender/blenkernel/BKE_armature.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_armature.h b/source/blender/blenkernel/BKE_armature.h
index 84d87b28037..7d0caa4b182 100644
--- a/source/blender/blenkernel/BKE_armature.h
+++ b/source/blender/blenkernel/BKE_armature.h
@@ -55,12 +55,12 @@ typedef struct PoseTarget
typedef struct PoseChain
{
- struct PoseChain *next, *prev; // hurms
+ struct PoseChain *next, *prev;
struct bPoseChannel **pchanchain;
struct ListBase targets;
int totchannel;
+ int tree; // true or false
float (*basis_change)[3][3];
- char group[32];
float tolerance;
int iterations;
} PoseChain;