From 68efcca5ea0db71856dbad2cff21b64ab51f3fd7 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 11 Dec 2012 14:39:28 +0000 Subject: Fix issue reported in #32174: IK solver stretch was less stable after a code refactor commit, epsilon was supposed to be 0.01 instead of 0.001. --- intern/iksolver/extern/IK_solver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern') diff --git a/intern/iksolver/extern/IK_solver.h b/intern/iksolver/extern/IK_solver.h index a3f599e06c8..4de9f143e77 100644 --- a/intern/iksolver/extern/IK_solver.h +++ b/intern/iksolver/extern/IK_solver.h @@ -163,7 +163,7 @@ float IK_SolverGetPoleAngle(IK_Solver *solver); int IK_Solve(IK_Solver *solver, float tolerance, int max_iterations); -#define IK_STRETCH_STIFF_EPS 0.001f +#define IK_STRETCH_STIFF_EPS 0.01f #define IK_STRETCH_STIFF_MIN 0.001f #define IK_STRETCH_STIFF_MAX 1e10 -- cgit v1.2.3