Uses of Interface
org.jgrapht.alg.drawing.model.LayoutModel2D
-
Packages that use LayoutModel2D Package Description org.jgrapht.alg.drawing Graph Drawing.org.jgrapht.alg.drawing.model Graph Drawing Basic Types and Models. -
-
Uses of LayoutModel2D in org.jgrapht.alg.drawing
Fields in org.jgrapht.alg.drawing with type parameters of type LayoutModel2D Modifier and Type Field Description protected java.util.function.BiFunction<LayoutModel2D<V>,java.lang.Integer,FRLayoutAlgorithm2D.TemperatureModel>
FRLayoutAlgorithm2D. temperatureModelSupplier
Methods in org.jgrapht.alg.drawing with parameters of type LayoutModel2D Modifier and Type Method Description protected java.util.Map<V,Point2D>
FRLayoutAlgorithm2D. calculateAttractiveForces(Graph<V,E> graph, LayoutModel2D<V> model)
Calculate the repulsive forces between vertices connected with edges.protected java.util.Map<V,Point2D>
FRLayoutAlgorithm2D. calculateRepulsiveForces(Graph<V,E> graph, LayoutModel2D<V> model)
Calculate the repulsive forces between verticesprotected java.util.Map<V,Point2D>
IndexedFRLayoutAlgorithm2D. calculateRepulsiveForces(Graph<V,E> graph, LayoutModel2D<V> model)
void
CircularLayoutAlgorithm2D. layout(Graph<V,E> graph, LayoutModel2D<V> model)
void
FRLayoutAlgorithm2D. layout(Graph<V,E> graph, LayoutModel2D<V> model)
void
IndexedFRLayoutAlgorithm2D. layout(Graph<V,E> graph, LayoutModel2D<V> model)
void
LayoutAlgorithm2D. layout(Graph<V,E> graph, LayoutModel2D<V> model)
Layout a graph.void
RandomLayoutAlgorithm2D. layout(Graph<V,E> graph, LayoutModel2D<V> model)
Constructor parameters in org.jgrapht.alg.drawing with type arguments of type LayoutModel2D Constructor Description FRLayoutAlgorithm2D(int iterations, double normalizationFactor, java.util.function.BiFunction<LayoutModel2D<V>,java.lang.Integer,FRLayoutAlgorithm2D.TemperatureModel> temperatureModelSupplier, java.util.Random rng)
Create a new layout algorithm -
Uses of LayoutModel2D in org.jgrapht.alg.drawing.model
Classes in org.jgrapht.alg.drawing.model that implement LayoutModel2D Modifier and Type Class Description class
ListenableLayoutModel2D<V>
A layout model wrapper which adds support for listeners.class
MapLayoutModel2D<V>
A layout model which uses a hashtable to store the vertices' locations.Fields in org.jgrapht.alg.drawing.model declared as LayoutModel2D Modifier and Type Field Description protected LayoutModel2D<V>
ListenableLayoutModel2D. model
Constructors in org.jgrapht.alg.drawing.model with parameters of type LayoutModel2D Constructor Description ListenableLayoutModel2D(LayoutModel2D<V> model)
Create a new model
-