isValidWidthTolerance function

bool isValidWidthTolerance(
  1. double widthTolerance
)

Implementation

bool isValidWidthTolerance(double widthTolerance) {
  return widthTolerance >= 0;
}