Class EdgeAwareTreeLayoutAlgorithm<V,​E>

    • Constructor Detail

      • EdgeAwareTreeLayoutAlgorithm

        public EdgeAwareTreeLayoutAlgorithm()
      • EdgeAwareTreeLayoutAlgorithm

        protected EdgeAwareTreeLayoutAlgorithm​(EdgeAwareTreeLayoutAlgorithm.Builder<V,​E,​?,​?> builder)
        Create an instance with the passed builder parameters
        Parameters:
        builder - the configuration
    • Method Detail

      • edgeAwareBuilder

        public static <V,​E> EdgeAwareTreeLayoutAlgorithm.Builder<V,​E,​?,​?> edgeAwareBuilder()
        Type Parameters:
        V - vertex type
        E - edge type
        Returns:
        a Builder ready to configure
      • buildTree

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

        protected void buildTree​(LayoutModel<V> layoutModel,
                                 V vertex,
                                 int x,
                                 int y,
                                 Set<V> seen)
        Build the tree (position the vertices) starting at the passed vertex and then descending recursively into its child vertices
        Overrides:
        buildTree in class TreeLayoutAlgorithm<V>
        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)
      • calculateWidth

        protected int calculateWidth​(LayoutModel<V> layoutModel,
                                     V vertex,
                                     Set<V> seen)
        Calculate the overall width of the subtree rooted at the passed vertex. The edgePredicate is used to keep favored edges together. For example, if a non-favored edge provides a vertex sooner than its favored edge, the non-favored edge path will be deferred until the favored edge provides the same vertex. This prevents edges that span from one tree to another from 'stealing' a subtree that we would prefer to keep together on its favored edge path
        Overrides:
        calculateWidth in class TreeLayoutAlgorithm<V>
        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 overall width of the subtree rooted at the passed vertex
      • calculateHeight

        protected int calculateHeight​(LayoutModel<V> layoutModel,
                                      V vertex,
                                      Set<V> seen)
        Calculate the overall height of the subtree rooted at the passed vertex. The edgePredicate is used to keep favored edges together. For example, if a non-favored edge provides a vertex sooner than its favored edge, the non-favored edge path will be deferred until the favored edge provides the same vertex. This prevents edges that span from one tree to another from 'stealing' a subtree that we would prefer to keep together on its favored edge path
        Overrides:
        calculateHeight in class TreeLayoutAlgorithm<V>
        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 overall height of the subtree rooted at the passed vertex
      • alignBuildTree

        protected Set<V> alignBuildTree​(LayoutModel<V> layoutModel)
        After the tree is configured, visit all of the vertices that are on favored edges and adjust their position to the left side of their children's bounding box. This helps provide a more linear path for favored edge endpoints
        Parameters:
        layoutModel - the source of the graph and its vertices
        Returns:
        the Set of root vertices