pep8 edits and avoid naming conflicts with python builtins

This commit is contained in:
2011-11-24 19:36:12 +00:00
parent ddfc518cae
commit 6e28ac2d7b
19 changed files with 65 additions and 55 deletions

View File

@@ -241,7 +241,7 @@ static PyObject *Euler_rotate(EulerObject * self, PyObject *value)
return NULL;
eulO_to_mat3(self_rmat, self->eul, self->order);
mul_m3_m3m3(rmat, self_rmat, other_rmat);
mul_m3_m3m3(rmat, other_rmat, self_rmat);
mat3_to_compatible_eulO(self->eul, self->eul, self->order, rmat);