minor code cleanup

This commit is contained in:
2012-08-25 12:55:14 +00:00
parent 179ac9ebc0
commit 71d1b09708
8 changed files with 18 additions and 18 deletions

View File

@@ -995,7 +995,7 @@ static PyObject *Matrix_to_euler(MatrixObject *self, PyObject *args)
if (eul_compat) {
if (order == 1) mat3_to_compatible_eul(eul, eul_compatf, mat);
else mat3_to_compatible_eulO(eul, eul_compatf, order, mat);
else mat3_to_compatible_eulO(eul, eul_compatf, order, mat);
}
else {
if (order == 1) mat3_to_eul(eul, mat);