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:
authorJoshua Leung <aligorith@gmail.com>2007-08-14 15:19:35 +0400
committerJoshua Leung <aligorith@gmail.com>2007-08-14 15:19:35 +0400
commit7d93e1ec2f79b400c69353355ed0de7092abeed3 (patch)
treeb0bac3f0b81028b16624bb833a14ea5b2a8bd2dc /source/blender/blenkernel/intern/constraint.c
parent35bc7079e32b9c28571b9fb1ee5081cd0376927e (diff)
constraint_mat_convertspace is now no longer static/private to constraint.c
Diffstat (limited to 'source/blender/blenkernel/intern/constraint.c')
-rw-r--r--source/blender/blenkernel/intern/constraint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c
index 08b8239513b..205feb15ab3 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -914,7 +914,7 @@ void do_constraint_channels (ListBase *conbase, ListBase *chanbase, float ctime)
* of a matrix from one space to another for constraint evaluation.
* For now, this is only implemented for Objects and PoseChannels.
*/
-static void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4], short from, short to)
+void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4], short from, short to)
{
float tempmat[4][4];
float diff_mat[4][4];