isVertOutside method

bool isVertOutside(
  1. Rect bounds
)

Implementation

bool isVertOutside(Rect bounds) {
  return top < bounds.top || bottom > bounds.bottom;
}