Uses of Interface
org.jungrapht.visualization.spatial.Spatial
-
Packages that use Spatial Package Description org.jungrapht.samples.spatial Sample applications showing spatial data structuresorg.jungrapht.visualization Frameworks and mechanisms for visualizing JUNGRAPHT graphs using Swing/AWT.org.jungrapht.visualization.renderers Visualization mechanisms relating to rendering.org.jungrapht.visualization.selection Visualization mechanisms for supporting the selection of graph elements.org.jungrapht.visualization.spatial Visualization mechanisms for supporting spatial data structures. -
-
Uses of Spatial in org.jungrapht.samples.spatial
Methods in org.jungrapht.samples.spatial with parameters of type Spatial Modifier and Type Method Description void
SimpleGraphSpatialEdgeSearchTest. testClosestVertices(VisualizationViewer<String,Integer> vv, org.jgrapht.Graph<String,Integer> graph, LayoutModel<String> layoutModel, Spatial<String,String> tree)
void
SimpleGraphSpatialSearchTest. testClosestVertices(VisualizationViewer<String,Integer> vv, org.jgrapht.Graph<String,Integer> graph, LayoutModel<String> layoutModel, Spatial<String,String> tree)
-
Uses of Spatial in org.jungrapht.visualization
Fields in org.jungrapht.visualization declared as Spatial Modifier and Type Field Description protected Spatial<E,V>
DefaultVisualizationServer. edgeSpatial
protected Spatial<E,V>
DefaultVisualizationServer. edgeSpatial
protected Spatial<E,V>
DefaultVisualizationServer. edgeSpatial
protected Spatial<E,V>
DefaultVisualizationServer. edgeSpatial
protected Spatial<E,V>
DefaultVisualizationServer. edgeSpatial
protected Spatial<V,V>
DefaultVisualizationServer. vertexSpatial
protected Spatial<V,V>
DefaultVisualizationServer. vertexSpatial
protected Spatial<V,V>
DefaultVisualizationServer. vertexSpatial
protected Spatial<V,V>
DefaultVisualizationServer. vertexSpatial
protected Spatial<V,V>
DefaultVisualizationServer. vertexSpatial
Methods in org.jungrapht.visualization that return Spatial Modifier and Type Method Description Spatial<E,V>
VisualizationServer. getEdgeSpatial()
Spatial<V,V>
VisualizationServer. getVertexSpatial()
Methods in org.jungrapht.visualization with parameters of type Spatial Modifier and Type Method Description void
VisualizationServer. setEdgeSpatial(Spatial<E,V> spatial)
void
VisualizationServer. setVertexSpatial(Spatial<V,V> spatial)
-
Uses of Spatial in org.jungrapht.visualization.renderers
Methods in org.jungrapht.visualization.renderers with parameters of type Spatial Modifier and Type Method Description void
BiModalRenderer. render(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, Spatial<V,V> vertexSpatial, Spatial<E,V> edgeSpatial)
void
LightweightRenderer. render(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, Spatial<V,V> vertexSpatial, Spatial<E,V> edgeSpatial)
void
Renderer. render(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, Spatial<V,V> vertexSpatial, Spatial<E,V> edgeSpatial)
void
SelectionRenderer. render(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, Spatial<V,V> vertexSpatial, Spatial<E,V> edgeSpatial)
-
Uses of Spatial in org.jungrapht.visualization.selection
Methods in org.jungrapht.visualization.selection with parameters of type Spatial Modifier and Type Method Description protected Collection<V>
ShapePickSupport. getContained(Spatial spatial, LayoutModel<V> layoutModel, Shape shape)
use the spatial structure to find vertices inside the passed shapeprotected V
ShapePickSupport. getVertex(Spatial<V,V> spatial, LayoutModel<V> layoutModel, Rectangle2D pickingFootprint)
uses the spatialRTree to find the closest vertex to the points -
Uses of Spatial in org.jungrapht.visualization.spatial
Classes in org.jungrapht.visualization.spatial that implement Spatial Modifier and Type Class Description class
AbstractSpatial<T,NT>
static class
Spatial.NoOp<T,NT>
a special case Spatial that does no filteringstatic class
Spatial.NoOp.Edge<E,V>
static class
Spatial.NoOp.Vertex<V>
class
SpatialGrid<V>
A Spatial Data Structure to optimize rendering performance.class
SpatialQuadTree<V>
A spatial data structure that uses a quadtree.class
SpatialRTree<T,NT>
static class
SpatialRTree.Edges<E,V>
static class
SpatialRTree.Vertices<V>
class
SwingThreadSpatial<T,NT>
Fields in org.jungrapht.visualization.spatial declared as Spatial Modifier and Type Field Description protected Spatial<T,NT>
SwingThreadSpatial. spatial
Methods in org.jungrapht.visualization.spatial that return Spatial Modifier and Type Method Description Spatial<T,NT>
SwingThreadSpatial. after(Runnable after)
Spatial<T,NT>
SwingThreadSpatial. getSpatial()
Methods in org.jungrapht.visualization.spatial that return types with arguments of type Spatial Modifier and Type Method Description List<Spatial>
SpatialQuadTree. getVertices(List<Spatial> list)
Methods in org.jungrapht.visualization.spatial with parameters of type Spatial Modifier and Type Method Description static <T,NT>
SwingThreadSpatial<T,NT>SwingThreadSpatial. of(Spatial<T,NT> delegate)
Method parameters in org.jungrapht.visualization.spatial with type arguments of type Spatial Modifier and Type Method Description List<Spatial>
SpatialQuadTree. getVertices(List<Spatial> list)
Constructors in org.jungrapht.visualization.spatial with parameters of type Spatial Constructor Description SwingThreadSpatial(Spatial<T,NT> delegate)
-