This commit is contained in:
lolouk44 2020-02-03 10:44:10 +00:00
parent 34255e9023
commit 2d7c52de44
2 changed files with 6 additions and 5 deletions

View file

@ -1,4 +1,5 @@
from math import floor
import sys
from body_scales import bodyScales
class bodyMetrics:

View file

@ -95,11 +95,11 @@ class bodyScore:
return self.getMalus(self.bodyfat, scale[3], scale[2], 20, 10) + 10.0
# High part of normal fat
elif self.bodyfat <= normal[2]:
elif self.bodyfat <= scale[2]:
return self.getMalus(self.bodyfat, scale[2], best, 3, 9) + 3.0
# Very low in fat
elif self.bodyfat < normal[0]:
elif self.bodyfat < scale[0]:
return self.getMalus(self.bodyfat, 1.0, scale[0], 3, 10) + 3.0