removed some unused variables

This commit is contained in:
2002-10-30 00:27:48 +00:00
parent ca3392a310
commit df6b70a9ca
7 changed files with 8 additions and 31 deletions

View File

@@ -2542,7 +2542,7 @@ void auto_align_armature(void)
/* Sets the roll value of selected bones so that their zaxes point upwards */
{
EditBone *ebone;
float xaxis[3]={1.0, 0.0, 0.0}, yaxis[3], zaxis[3]={0.0, 0.0, 1.0}, ytest[3]={0.0, -1.0, 0.0};
float xaxis[3]={1.0, 0.0, 0.0}, yaxis[3], zaxis[3]={0.0, 0.0, 1.0};
float targetmat[4][4], imat[4][4];
float curmat[4][4], diffmat[4][4];
float delta[3];
@@ -2571,4 +2571,5 @@ void auto_align_armature(void)
}
}
}
}