sub_v3_v3v3 --> sub_v3_v3 (where possible)

This commit is contained in:
2010-04-23 23:57:00 +00:00
parent 394537715d
commit 39c0e690d3
24 changed files with 82 additions and 88 deletions

View File

@@ -996,7 +996,7 @@ void EM_free_data_layer(EditMesh *em, CustomData *data, int type)
static void add_normal_aligned(float *nor, float *add)
{
if( INPR(nor, add) < -0.9999f)
sub_v3_v3v3(nor, nor, add);
sub_v3_v3(nor, add);
else
add_v3_v3(nor, add);
}