Fix T45921: Screw modifier flips vertex normals

This commit is contained in:
Campbell Barton 2015-08-27 19:22:16 +10:00
parent 5908340f79
commit c5f9255eed
1 changed files with 1 additions and 1 deletions

View File

@ -766,7 +766,7 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *ob,
}
/* we wont be looping on this data again so copy normals here */
if (angle < 0.0f)
if ((angle < 0.0f) != do_flip)
negate_v3(vc->no);
normalize_v3(vc->no);