Uses of Class
org.jungrapht.visualization.spatial.rtree.RTree
-
Packages that use RTree Package Description org.jungrapht.samples.spatial Sample applications showing spatial data structuresorg.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 RTree in org.jungrapht.samples.spatial
Constructors in org.jungrapht.samples.spatial with parameters of type RTree Constructor Description RTreeVisualization(RTree rtree, VisualizationServer othervv)
-
Uses of RTree in org.jungrapht.visualization.spatial
Fields in org.jungrapht.visualization.spatial declared as RTree Modifier and Type Field Description protected RTree<T>
SpatialRTree. rtree
the RTree to use.Methods in org.jungrapht.visualization.spatial with parameters of type RTree Modifier and Type Method Description protected abstract List<Shape>
SpatialRTree. collectGrids(List<Shape> list, RTree<T> tree)
gather the RTree nodes into a list for display as Paintablesprotected List<Shape>
SpatialRTree.Edges. collectGrids(List<Shape> list, RTree<E> tree)
protected List<Shape>
SpatialRTree.Vertices. collectGrids(List<Shape> list, RTree<V> tree)
-
Uses of RTree in org.jungrapht.visualization.spatial.rtree
Methods in org.jungrapht.visualization.spatial.rtree that return RTree Modifier and Type Method Description static <T> RTree<T>
RTree. add(RTree<T> rtree, SplitterContext<T> splitterContext, Map.Entry<T,Rectangle2D> entry)
static <T> RTree<T>
RTree. add(RTree<T> rtree, SplitterContext<T> splitterContext, T element, Rectangle2D bounds)
add one element to the RTree.static <T> RTree<T>
RTree. addAll(RTree<T> rtree, SplitterContext<T> splitterContext, Collection<Map.Entry<T,Rectangle2D>> entries)
static <T> RTree<T>
RTree. bulkAdd(RTree<T> rtree, SplitterContext<T> splitterContext, Collection<Map.Entry<T,Rectangle2D>> items)
static <T> RTree<T>
RTree. create()
create and return an empty R-Treestatic <T> RTree
RTree. reinsert(RTree<T> rtree, SplitterContext<T> splitterContext)
static <T> RTree<T>
RTree. remove(RTree<T> rtree, T element)
remove an element from the treestatic <T> RTree
RTree. removeForReinsert(RTree<T> rtree, Collection<Map.Entry<T,Rectangle2D>> removed)
Methods in org.jungrapht.visualization.spatial.rtree with parameters of type RTree Modifier and Type Method Description static <T> RTree<T>
RTree. add(RTree<T> rtree, SplitterContext<T> splitterContext, Map.Entry<T,Rectangle2D> entry)
static <T> RTree<T>
RTree. add(RTree<T> rtree, SplitterContext<T> splitterContext, T element, Rectangle2D bounds)
add one element to the RTree.static <T> RTree<T>
RTree. addAll(RTree<T> rtree, SplitterContext<T> splitterContext, Collection<Map.Entry<T,Rectangle2D>> entries)
static <T> RTree<T>
RTree. bulkAdd(RTree<T> rtree, SplitterContext<T> splitterContext, Collection<Map.Entry<T,Rectangle2D>> items)
static <T> RTree
RTree. reinsert(RTree<T> rtree, SplitterContext<T> splitterContext)
static <T> RTree<T>
RTree. remove(RTree<T> rtree, T element)
remove an element from the treestatic <T> RTree
RTree. removeForReinsert(RTree<T> rtree, Collection<Map.Entry<T,Rectangle2D>> removed)
-