Class RTree<T>

    • Method Detail

      • getRoot

        public Optional<Node<T>> getRoot()
        Returns:
        the root of the R-Tree
      • create

        public static <T> RTree<T> create()
        create and return an empty R-Tree
        Type Parameters:
        T -
        Returns:
        an empty R-Tree
      • add

        public static <T> RTree<T> add​(RTree<T> rtree,
                                       SplitterContext<T> splitterContext,
                                       T element,
                                       Rectangle2D bounds)
        add one element to the RTree. Adding to the tree can result in a new
        Parameters:
        splitterContext - the R*Tree or R-Tree rules
        element - to add to the tree
        bounds - for the element to add
        Returns:
        a new RTree containing the added element
      • remove

        public static <T> RTree<T> remove​(RTree<T> rtree,
                                          T element)
        remove an element from the tree
        Parameters:
        element -
        Returns:
      • getPickedObject

        public T getPickedObject​(Point2D p)
        return an object at point p
        Parameters:
        p - point to search
        Returns:
        an element that contains p or null
      • getGrid

        public Set<Shape> getGrid()
        Returns:
        a collection of rectangular bounds of the R-Tree nodes
      • getContainingLeafs

        public Collection<TreeNode> getContainingLeafs​(Point2D p)
        get the R-Tree leaf nodes that would contain the passed point
        Parameters:
        p - the point to search
        Returns:
        a Collection of R-Tree nodes that would contain p
      • count

        public int count()
        count all the elements in the R-Tree
        Returns:
        the count