Cleanup: remove unused function

The last usage was removed in {rB4eda60c2d82de0d7f7ded8ddf1036aea040e9c0d}.
This commit is contained in:
Jacques Lucke 2020-09-14 12:24:13 +02:00
parent 61abd77648
commit b8a25bbd8a
1 changed files with 0 additions and 18 deletions

View File

@ -100,24 +100,6 @@ static void constraint_plane_calc(TransInfo *t, float r_plane[4])
r_plane[3] = -dot_v3v3(r_plane, t->center_global);
}
static void constraintValuesFinal(TransInfo *t, float vec[3])
{
int mode = t->con.mode;
if (mode & CON_APPLY) {
float nval = (t->flag & T_NULL_ONE) ? 1.0f : 0.0f;
if ((mode & CON_AXIS0) == 0) {
vec[0] = nval;
}
if ((mode & CON_AXIS1) == 0) {
vec[1] = nval;
}
if ((mode & CON_AXIS2) == 0) {
vec[2] = nval;
}
}
}
void constraintNumInput(TransInfo *t, float vec[3])
{
int mode = t->con.mode;