BLI_math rename functions:
- mult_m4_m4m4 -> mul_m4_m4m4 - mult_m3_m3m4 -> mul_m3_m3m4 these temporary names were used to avoid problems when argument order was switched.
This commit is contained in:
@@ -158,7 +158,7 @@ static void sphere_do(
|
||||
if (ctrl_ob) {
|
||||
if (flag & MOD_CAST_USE_OB_TRANSFORM) {
|
||||
invert_m4_m4(ctrl_ob->imat, ctrl_ob->obmat);
|
||||
mult_m4_m4m4(mat, ctrl_ob->imat, ob->obmat);
|
||||
mul_m4_m4m4(mat, ctrl_ob->imat, ob->obmat);
|
||||
invert_m4_m4(imat, mat);
|
||||
}
|
||||
|
||||
@@ -282,7 +282,7 @@ static void cuboid_do(
|
||||
if (ctrl_ob) {
|
||||
if (flag & MOD_CAST_USE_OB_TRANSFORM) {
|
||||
invert_m4_m4(ctrl_ob->imat, ctrl_ob->obmat);
|
||||
mult_m4_m4m4(mat, ctrl_ob->imat, ob->obmat);
|
||||
mul_m4_m4m4(mat, ctrl_ob->imat, ob->obmat);
|
||||
invert_m4_m4(imat, mat);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user