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-11-03 23:22:29 +0300
committerJoseph Gilbert <ascotan@gmail.com>2005-11-03 23:22:29 +0300
commit3f8f0f7aac3892fa36255f142e93fbc3e352b154 (patch)
tree42a0c8b57816769f651b37ddb24c9cddf66e1a35 /source/blender/python/api2_2x/matrix.c
parentbeece21d1f7b1912657e8929093aca6108953d73 (diff)
Silly error string correction
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 9d141cb8232..a0a02a98575 100644
--- a/source/blender/python/api2_2x/matrix.c
+++ b/source/blender/python/api2_2x/matrix.c
@@ -88,7 +88,7 @@ PyObject *Matrix_toEuler(MatrixObject * self)
//must be 3-4 cols, 3-4 rows, square matrix
if(self->colSize !=3 || self->rowSize != 3) {
return EXPP_ReturnPyObjError(PyExc_AttributeError,
- "Matrix.toQuat(): inappropriate matrix size - expects 3x3 matrix\n");
+ "Matrix.toEuler(): inappropriate matrix size - expects 3x3 matrix\n");
}
Mat3ToEul((float (*)[3])*self->matrix, eul);
//have to convert to degrees