Class TreeLayoutAlgorithm<V>

    • Constructor Detail

      • TreeLayoutAlgorithm

        public TreeLayoutAlgorithm()
    • Method Detail

      • builder

        public static <V> TreeLayoutAlgorithm.Builder<V,​?,​?> builder()
        Type Parameters:
        V - the vertex type
        Returns:
        a Builder ready to configure
      • buildTree

        protected Set<V> buildTree​(LayoutModel<V> layoutModel)
        Parameters:
        layoutModel - the model to hold vertex positions
        Returns:
        the roots vertices of the tree
      • getInitialPosition

        protected int getInitialPosition​(int initialPosition,
                                         int layoutSpan,
                                         int treeSpan)
        Parameters:
        initialPosition - default initial position for when the layoutSpan is greater than the tree span
        layoutSpan - the dimension (width or height) of the layout
        treeSpan - the dimension (width or height) of the current subtree
        Returns:
        the average of the layoutSpan and treeSpan or the passed initial position
      • buildTree

        protected void buildTree​(LayoutModel<V> layoutModel,
                                 V vertex,
                                 int x,
                                 int y,
                                 Set<V> seen)
        Place the passed vertex and descend into the child vertices, recursively placing each child vertex
        Parameters:
        layoutModel - the LayoutModel to hold the vertex positions
        vertex - the vertex to place in position
        x - the x position
        y - the y position
        seen - a set of vertices that were already 'seen' (and placed in the layoutModel)
      • merge

        protected void merge​(LayoutModel<V> layoutModel,
                             V vertex)
        update the baseBounds Map value for the passed vertex, with the (x,y) position of this vertex
        Parameters:
        layoutModel - the source of the vertex coordinates
        vertex - the vertex key to update in the baseBounds map
      • calculateWidth

        protected int calculateWidth​(LayoutModel<V> layoutModel,
                                     V vertex,
                                     Set<V> seen)
        calculate the width of the subtree descended from the passed vertex
        Parameters:
        layoutModel - the source of the graph vertices
        vertex - the vertex at the root of the current subtree
        seen - a set of vertices that were already measured
        Returns:
        the width of the subtree rooted at the passed vertex
      • calculateWidth

        protected int calculateWidth​(LayoutModel<V> layoutModel,
                                     Collection<V> roots,
                                     Set<V> seen)
        Calculate the width of the forest as the sum of the width of each tree (plus offsets)
        Parameters:
        layoutModel - the source of the graph and its vertices
        roots - the root vertices of the forest
        seen - a set of vertices that were already placed
        Returns:
        the overall width
      • calculateHeight

        protected int calculateHeight​(LayoutModel<V> layoutModel,
                                      V vertex,
                                      Set<V> seen)
        Calculate the height of the subtree under the passed vertex
        Parameters:
        layoutModel - the source of the Graph and its vertices
        vertex - the vertex at the top of the current subtree
        seen - a set of vertices that were already counted
        Returns:
        the height of the subtree rooted at the passed vertex
      • calculateHeight

        protected int calculateHeight​(LayoutModel<V> layoutModel,
                                      Collection<V> roots,
                                      Set<V> seen)
        Calculate the height of the forest as the max height of all of its subtrees
        Parameters:
        layoutModel - the source of the graph and vertices
        roots - the root vertices of the forest
        seen - a set of vertices that were already measured
        Returns:
        the height that will accomodate the entire forest
      • getCenter

        public Point getCenter​(LayoutModel<V> layoutModel)
        Returns:
        the center of this layout's area.
      • getSpanningTree

        public static <V,​E> org.jgrapht.Graph<V,​E> getSpanningTree​(org.jgrapht.Graph<V,​E> graph)