Uses of Interface
org.jungrapht.visualization.spatial.rtree.TreeNode
-
Packages that use TreeNode Package Description org.jungrapht.visualization.spatial Visualization mechanisms for supporting spatial data structures.org.jungrapht.visualization.spatial.rtree Visualization mechanisms for supporting RTree spatial data structures. -
-
Uses of TreeNode in org.jungrapht.visualization.spatial
Classes in org.jungrapht.visualization.spatial that implement TreeNode Modifier and Type Class Description static class
Spatial.NoOp.DegenerateTreeVertex<V>
a TreeNode that is immutable and covers the entire layout areaclass
SpatialGrid<V>
A Spatial Data Structure to optimize rendering performance.class
SpatialQuadTree<V>
A spatial data structure that uses a quadtree.Methods in org.jungrapht.visualization.spatial that return TreeNode Modifier and Type Method Description TreeNode
Spatial. getContainingLeaf(Object element)
TreeNode
Spatial.NoOp. getContainingLeaf(Object element)
TreeNode
SpatialGrid. getContainingLeaf(Object element)
TreeNode
SpatialQuadTree. getContainingLeaf(Object element)
TreeNode
SwingThreadSpatial. getContainingLeaf(Object element)
TreeNode
SpatialQuadTree. getContainingQuadTreeLeaf(V node)
Methods in org.jungrapht.visualization.spatial that return types with arguments of type TreeNode Modifier and Type Method Description List<? extends TreeNode>
Spatial.NoOp.DegenerateTreeVertex. getChildren()
contains no childrenCollection<? extends TreeNode>
SpatialGrid. getChildren()
Collection<? extends TreeNode>
SpatialQuadTree. getChildren()
Set<? extends TreeNode>
Spatial. getContainingLeafs(double x, double y)
Set<? extends TreeNode>
Spatial. getContainingLeafs(Point2D p)
Set<? extends TreeNode>
Spatial.NoOp. getContainingLeafs(double x, double y)
Set<? extends TreeNode>
Spatial.NoOp. getContainingLeafs(Point2D p)
Set<TreeNode>
SpatialGrid. getContainingLeafs(double x, double y)
Set<TreeNode>
SpatialGrid. getContainingLeafs(Point2D p)
Set<? extends TreeNode>
SwingThreadSpatial. getContainingLeafs(double x, double y)
Set<? extends TreeNode>
SwingThreadSpatial. getContainingLeafs(Point2D p)
-
Uses of TreeNode in org.jungrapht.visualization.spatial.rtree
Subinterfaces of TreeNode in org.jungrapht.visualization.spatial.rtree Modifier and Type Interface Description interface
Node<T>
Interface for R-Tree nodes Includes static functions for area, union, margin, overlapClasses in org.jungrapht.visualization.spatial.rtree that implement TreeNode Modifier and Type Class Description class
InnerNode<T>
a non-leaf node of the R-Tree.class
LeafNode<T>
a leaf node of an R-Tree.class
RTreeNode<T>
contains the parent for Node implementationsMethods in org.jungrapht.visualization.spatial.rtree that return types with arguments of type TreeNode Modifier and Type Method Description Collection<? extends TreeNode>
LeafNode. getChildren()
Collection<? extends TreeNode>
TreeNode. getChildren()
Collection<TreeNode>
RTree. getContainingLeafs(Point2D p)
get the R-Tree leaf nodes that would contain the passed point
-