pdelmonte
1
Q:

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();
}
0

New to Communities?

Join the community