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:
authorJoseph Gilbert <ascotan@gmail.com>2005-07-19 18:17:07 +0400
committerJoseph Gilbert <ascotan@gmail.com>2005-07-19 18:17:07 +0400
commit8d2d045079d7f9de0cd3e7760cdac80393bba308 (patch)
treefe566a851496f75d34c1d39b82225dae57700a80 /source/blender/python/api2_2x/matrix.c
parent29855c895c2003ec0672776cb483d9790a68c3f6 (diff)
-Patch submitted by Campbell Barton
-Fixed matrix.invert() to return the correct inverse matrix
Diffstat (limited to 'source/blender/python/api2_2x/matrix.c')
-rw-r--r--source/blender/python/api2_2x/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/matrix.c b/source/blender/python/api2_2x/matrix.c
index 9d65e995c56..6f7d84f0553 100644
--- a/source/blender/python/api2_2x/matrix.c
+++ b/source/blender/python/api2_2x/matrix.c
@@ -232,7 +232,7 @@ PyObject *Matrix_Invert(MatrixObject * self)
}
}
//transpose
- Matrix_Transpose(self);
+ //Matrix_Transpose(self);
} else {
printf("Matrix.invert: matrix does not have an inverse\n");
}