Java Utililty Methods Rectangle Intersect

List of utility methods to do Rectangle Intersect

Description

The list of methods to do Rectangle Intersect are organized into topic(s).

Method

booleanintersectsRectangle(final double checkMinX, final double checkMinY, final double checkMaxX, final double checkMaxY, final double againstMinX, final double againstMinY, final double againstMaxX, final double againstMaxY)
intersects Rectangle
boolean output = false;
if (againstMaxX > checkMinX && againstMinX < checkMaxX && againstMaxY > checkMinY
        && againstMinY < checkMaxY) {
    output = true;
return output;