Interface QuickOverlapCalculation

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public interface QuickOverlapCalculation
A method to quickly calculate overlap approximately
  • Method Summary

    Modifier and Type Method Description
    boolean noOverlapWith​(Mark mark, int regionID)
    A quick (computationally-efficient) test to see if we can reject the possibility of overlap
  • Method Details

    • noOverlapWith

      boolean noOverlapWith​(Mark mark, int regionID)
      A quick (computationally-efficient) test to see if we can reject the possibility of overlap
      Parameters:
      mark - the other mark to assess overlap with
      regionID - the region to check for overlap
      Returns:
      true if there's definitely no overlap, false if there is maybe overlap or not