From fba7ebcbea35d3b14f535f7f7a50c61074ae7092 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 21 Apr 2010 12:27:48 +0000 Subject: replace add_v3_v3v3() --> add_v3_v3() where possible --- source/blender/modifiers/intern/MOD_smooth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/modifiers/intern/MOD_smooth.c') diff --git a/source/blender/modifiers/intern/MOD_smooth.c b/source/blender/modifiers/intern/MOD_smooth.c index 052d4641e2f..a42bf8abbaf 100644 --- a/source/blender/modifiers/intern/MOD_smooth.c +++ b/source/blender/modifiers/intern/MOD_smooth.c @@ -144,11 +144,11 @@ static void smoothModifier_do( if (uctmp[idx1] < 255) { uctmp[idx1]++; - add_v3_v3v3(v1, v1, fvec); + add_v3_v3(v1, fvec); } if (uctmp[idx2] < 255) { uctmp[idx2]++; - add_v3_v3v3(v2, v2, fvec); + add_v3_v3(v2, fvec); } } -- cgit v1.2.3