isNarrow static method

bool isNarrow(
  1. double width
)

returns true if the width is in the NARROW range

Implementation

static bool isNarrow(double width) {
  return width <= NARROW;
}