patch [#31574] Screw seams to not work

from Benoit Donat-Bouillud (ladeheria)

from tracker -
  When using a screw axis (reference edge for screw), the operation always give the same result (as if the orientation of the reference edge was not take into account).
This commit is contained in:
Campbell Barton 2012-06-13 16:06:13 +00:00
parent 01b036f5c6
commit 0a2da1ee45
1 changed files with 3 additions and 1 deletions

View File

@ -504,7 +504,9 @@ void bmo_spin_exec(BMesh *bm, BMOperator *op)
BMO_op_finish(bm, &extop);
}
if (usedvec)
if (usedvec) {
mul_m3_v3(rmat, dvec);
BMO_op_callf(bm, "translate vec=%v verts=%s", dvec, op, "lastout");
}
}
}