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:
authorCampbell Barton <ideasman42@gmail.com>2007-10-21 21:38:17 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-10-21 21:38:17 +0400
commit8bcfafa3d935bf339bd497efe02f489d61e085bd (patch)
treec6d5dfe432d8f6dfb1c8203d74569fbc33d13c07 /source/blender
parent373a1b05beeb50e34064b5308cd33bbd7a555360 (diff)
changed default nan_definitions.mk to use python 2.5 for linux (ai64 default was py 2.2 which probably wont even compile anymore)
pose.c - left a print here export obj would ask about file overwriting twice.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/python/api2_2x/Pose.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Pose.c b/source/blender/python/api2_2x/Pose.c
index 2f1eb0252a4..a67edd5dff4 100644
--- a/source/blender/python/api2_2x/Pose.c
+++ b/source/blender/python/api2_2x/Pose.c
@@ -723,7 +723,6 @@ AttributeError:
//Gets the pose_mat
static PyObject *PoseBone_getPoseMatrix(BPy_PoseBone *self, void *closure)
{
- printmatrix4("posemat GET", self->posechannel->pose_mat );
return newMatrixObject((float*)self->posechannel->pose_mat, 4, 4, Py_WRAP);
}
//------------------------PoseBone.poseMatrix (setter)