getFatMass static method

double getFatMass(
  1. double weight,
  2. double bfr
)

脂肪量 @param: weight(kg) @param: bfr(体脂率 body fat rate) @result: (kg)

Implementation

static double getFatMass(double weight, double bfr) {
  return weight * bfr / 100;
}