Fix T44991: Apply transform skips poly-radius

This commit is contained in:
2015-06-08 12:58:50 +10:00
parent 99fba34b8d
commit 22a4fcb146

View File

@@ -4368,8 +4368,10 @@ void BKE_curve_transform_ex(Curve *cu, float mat[4][4], const bool do_keys, cons
}
else {
i = nu->pntsu * nu->pntsv;
for (bp = nu->bp; i--; bp++)
for (bp = nu->bp; i--; bp++) {
mul_m4_v3(mat, bp->vec);
bp->radius *= unit_scale;
}
}
}