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:
authorSukhitha Prabhath Jayathilake <pr.jayathilake@gmail.com>2011-06-26 19:35:02 +0400
committerSukhitha Prabhath Jayathilake <pr.jayathilake@gmail.com>2011-06-26 19:35:02 +0400
commit12e5d69af0cbb7c42601ea2541a9bdd536147d42 (patch)
tree45deb653f26454fc8793ffda1224dd0ce3a9b7f3 /source/blender/collada/ArmatureImporter.h
parent10d775df3d31ce7622ebb74ed7276cff5f1ffe90 (diff)
pose channel -> pose matrix import ( in progress )
Diffstat (limited to 'source/blender/collada/ArmatureImporter.h')
-rw-r--r--source/blender/collada/ArmatureImporter.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/source/blender/collada/ArmatureImporter.h b/source/blender/collada/ArmatureImporter.h
index f9cb09dca19..d78a41af803 100644
--- a/source/blender/collada/ArmatureImporter.h
+++ b/source/blender/collada/ArmatureImporter.h
@@ -107,11 +107,14 @@ private:
float parent_mat[][4], bArmature *arm);
void create_unskinned_bone(COLLADAFW::Node *node, EditBone *parent, int totchild,
- float parent_mat[][4], bArmature *arm);
+ float parent_mat[][4], Object * ob_arm);
void add_leaf_bone(float mat[][4], EditBone *bone);
void fix_leaf_bones();
+
+// void set_pose ( Object * ob_arm , COLLADAFW::Node * root_node , EditBone *parent, float parent_mat[][4]);
+
#if 0
void set_leaf_bone_shapes(Object *ob_arm);
@@ -156,13 +159,15 @@ public:
bool write_controller(const COLLADAFW::Controller* controller);
COLLADAFW::UniqueId *get_geometry_uid(const COLLADAFW::UniqueId& controller_uid);
-
+
Object *get_armature_for_joint(COLLADAFW::Node *node);
void get_rna_path_for_joint(COLLADAFW::Node *node, char *joint_path, size_t count);
// gives a world-space mat
bool get_joint_bind_mat(float m[][4], COLLADAFW::Node *joint);
+
+
};
#endif