Returns true iff any solid pixel in mask overlaps a solid cell
of the bitmap when the mask's top-left is placed at (mx, my) in
the bitmap's coordinate space.
Iterates only the mask's solid pixels and tests each against the
bitmap. Bitmap reads use ChunkedBitmap.getPixel which is
O(1) and treats out-of-bounds as air.
Returns
trueiff any solid pixel inmaskoverlaps a solid cell of the bitmap when the mask's top-left is placed at(mx, my)in the bitmap's coordinate space.Iterates only the mask's solid pixels and tests each against the bitmap. Bitmap reads use ChunkedBitmap.getPixel which is O(1) and treats out-of-bounds as air.