All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jungrapht.visualization.layout.quadtree.TreeNode Maven / Gradle / Ivy

The newest version!
package org.jungrapht.visualization.layout.quadtree;

import java.util.Collection;
import org.jungrapht.visualization.layout.model.Rectangle;

/** @author Tom Nelson */
public interface TreeNode {

  Rectangle getBounds();

  Collection getChildren();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy