lbsToKg static method

double lbsToKg(
  1. double lbs
)

Implementation

static double lbsToKg(double lbs) {
  return lbs * 0.453592;
}