Silly error string correction

This commit is contained in:
Joseph Gilbert
2005-11-03 20:22:29 +00:00
parent beece21d1f
commit 3f8f0f7aac

View File

@@ -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