Interface Spatial<T,​NT>

    • Method Detail

      • setActive

        void setActive​(boolean active)
        a flag to suggest whether or not the spatial structure should be used
        Parameters:
        active -
      • isActive

        boolean isActive()
        Returns:
        a hint about whether the spatial structure should be used
      • getGrid

        List<Shape> getGrid()
        Returns:
        a geometic representation of the spatial structure
      • getPickShapes

        Collection<Shape> getPickShapes()
        a short-lived collection of recent pick target areas
        Returns:
      • clear

        void clear()
        destroy the current spatial structure
      • recalculate

        void recalculate()
        rebuild the data structure
      • getLayoutArea

        Rectangle2D getLayoutArea()
        Returns:
        the 2 dimensional area of interest for this class
      • setBounds

        void setBounds​(Rectangle2D bounds)
        Parameters:
        bounds - the new bounds for the data struture
      • getUnion

        default Rectangle2D getUnion​(Rectangle2D rect,
                                     Point2D p)
        expands the passed rectangle so that it includes the passed point
        Parameters:
        rect - the area to consider
        p - the point that may be outside of the area
        Returns:
        a new rectangle
      • update

        void update​(T element,
                    Point location)
        update the spatial structure with the (possibly new) location of the passed element
        Parameters:
        element - the element to consider
        location - the location of the element
      • getContainingLeafs

        Set<? extends TreeNode> getContainingLeafs​(Point2D p)
        Parameters:
        p - a point to search in the spatial structure
        Returns:
        all leaf nodes that contain the passed point
      • getContainingLeafs

        Set<? extends TreeNode> getContainingLeafs​(double x,
                                                   double y)
        Parameters:
        x - the x location to search for
        y - the y location to search for
        Returns:
        all leaf nodes that contain the passed coordinates
      • getContainingLeaf

        TreeNode getContainingLeaf​(Object element)
        Parameters:
        element - element to search for
        Returns:
        the leaf node that currently contains the element (not a spatial search)
      • getVisibleElements

        Set<T> getVisibleElements​(Shape shape)
        Parameters:
        shape - a shape to filter the spatial structure's elements
        Returns:
        all elements that are contained in the passed shape
      • getClosestElement

        T getClosestElement​(Point2D p)
        Parameters:
        p - a point to search in the spatial structure
        Returns:
        the closest element to the passed point
      • getClosestElement

        T getClosestElement​(double x,
                            double y)
        Parameters:
        x - coordinate of a point to search in the spatial structure
        y - coordinate of a point to search in the spatial structure
        Returns:
        the closest element to the passed coordinates