Class RTreeIntersectionTester

    • Constructor Detail

      • RTreeIntersectionTester

        public RTreeIntersectionTester()
        Create an intersection tester with an internal RTree that is created using the RTree.RTree(int, int) constructor with arguments 1 and 10 for min and max nodes.
      • RTreeIntersectionTester

        public RTreeIntersectionTester(int minNodeEntries,
                                       int maxNodeEntries)
        Create an intersection tester with an internal RTree that is created using the RTree.RTree(int, int) constructor with the specified values for min and max nodes.
      • RTreeIntersectionTester

        public RTreeIntersectionTester(RTree tree)
        Create an intersection tester using the the specified RTree for storing the covered regions. This will traverse all entries stored in the specified tree initially to determine the highest id already used.
        Parameters:
        tree - the rectangle tree to store covered regions in