Run clang-format to fix line length after D8915.

This commit is contained in:
Alexander Gavrilov 2020-11-29 17:26:33 +03:00
parent 13c820d87b
commit 11f0169e88
1 changed files with 3 additions and 3 deletions

View File

@ -1834,9 +1834,9 @@ static void rotlike_evaluate(bConstraint *con, bConstraintOb *cob, ListBase *tar
mat4_to_eulO(obeul, rot_order, cob->matrix);
/* We must get compatible eulers from the beginning because
* some of them can be modified below (see bug T21875).
* Additionally, since this constraint is based on euler rotation math, it doesn't work well with shear.
* The Y axis is chosen as the main axis when we orthoganalize the matrix because constraints are
* used most commonly on bones. */
* Additionally, since this constraint is based on euler rotation math, it doesn't work well
* with shear. The Y axis is chosen as the main axis when we orthoganalize the matrix because
* constraints are used most commonly on bones. */
float mat[4][4];
copy_m4_m4(mat, ct->matrix);
orthogonalize_m4_stable(mat, 1, true);