From c5206e5d2f880adf9cff8ed295be5ec160d18e0d Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Thu, 23 Aug 2018 14:55:40 +0200 Subject: Fix T56506: Different behaviour of Bounds Clamp with positive and negative axis. Small typo on minus sign position... ;) --- source/blender/blenkernel/intern/lattice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenkernel/intern/lattice.c') diff --git a/source/blender/blenkernel/intern/lattice.c b/source/blender/blenkernel/intern/lattice.c index b02396e5296..582743acff4 100644 --- a/source/blender/blenkernel/intern/lattice.c +++ b/source/blender/blenkernel/intern/lattice.c @@ -624,7 +624,7 @@ static bool calc_curve_deform(Scene *scene, Object *par, float co[3], if (is_neg_axis) { index = axis - 3; if (cu->flag & CU_STRETCH) - fac = (-co[index] - cd->dmax[index]) / (cd->dmax[index] - cd->dmin[index]); + fac = -(co[index] - cd->dmax[index]) / (cd->dmax[index] - cd->dmin[index]); else fac = -(co[index] - cd->dmax[index]) / (par->curve_cache->path->totdist); } -- cgit v1.2.3