Commit e3ec910309fa01aaeff0aee8a09c2138e53a0a50
1 parent
a576064f
Exists in
master
Ajuste no limite inferior de rotações inválida.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
util.py
... | ... | @@ -61,8 +61,8 @@ left_bones_conf = dict_bones[conf_esquerda_id] + dict_bones[pa_esquerda_id] + di |
61 | 61 | |
62 | 62 | last_keyframe_dict = {} |
63 | 63 | |
64 | -# Invalid rotation lower bound - 60 degree | |
65 | -invalid_rotation_lower_bound = math.pi/3 | |
64 | +# Invalid rotation lower bound - 100 degree | |
65 | +invalid_rotation_lower_bound = (5*math.pi)/9 | |
66 | 66 | # Invalid rotation upper bound - 330 degree |
67 | 67 | invalid_rotation_upper_bound = (11*math.pi)/6 |
68 | 68 | ... | ... |