how to see if a shape is touching another shape in java code example
Example: how to see if a shape is touching another shape in java
public static boolean testIntersection(Shape shapeA, Shape shapeB) {
Area areaA = new Area(shapeA);
areaA.intersect(new Area(shapeB));
return !areaA.isEmpty();
}