From e3ec910309fa01aaeff0aee8a09c2138e53a0a50 Mon Sep 17 00:00:00 2001 From: Adabriand Furtado Date: Mon, 2 May 2016 15:11:08 -0300 Subject: [PATCH] Ajuste no limite inferior de rotações inválida. --- util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util.py b/util.py index 0e3e203..5305a81 100644 --- a/util.py +++ b/util.py @@ -61,8 +61,8 @@ left_bones_conf = dict_bones[conf_esquerda_id] + dict_bones[pa_esquerda_id] + di last_keyframe_dict = {} -# Invalid rotation lower bound - 60 degree -invalid_rotation_lower_bound = math.pi/3 +# Invalid rotation lower bound - 100 degree +invalid_rotation_lower_bound = (5*math.pi)/9 # Invalid rotation upper bound - 330 degree invalid_rotation_upper_bound = (11*math.pi)/6 -- libgit2 0.21.2