Bounds2D.overlaps C# (CSharp) Method

overlaps() public method

public overlaps ( Bounds2D, other ) : bool
other Bounds2D,
return bool
    public bool overlaps(Bounds2D other)
    {
        return isHorizontalOverlap(other) && isVerticalOverlap(other);
    }