replace VECCOPY and QUATCOPY with inline funcs.

This commit is contained in:
2011-10-28 12:40:15 +00:00
parent 565fcd8907
commit 0d63bb005f
22 changed files with 206 additions and 220 deletions

View File

@@ -1690,8 +1690,8 @@ int initTransform(bContext *C, TransInfo *t, wmOperator *op, wmEvent *event, int
values[0]= RNA_float_get(op->ptr, "value");
}
QUATCOPY(t->values, values);
QUATCOPY(t->auto_values, values);
copy_v4_v4(t->values, values);
copy_v4_v4(t->auto_values, values);
t->flag |= T_AUTOVALUES;
}