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 BiFunction<LayoutModel2D<V>,Integer,FRLayoutAlgorithm2D.TemperatureModel>FRLayoutAlgorithm2D. temperatureModelSupplierMethods in org.jgrapht.alg.drawing with parameters of type LayoutModel2D Modifier and Type Method Description protected Map<V,Point2D>FRLayoutAlgorithm2D. calculateAttractiveForces(Graph<V,E> graph, LayoutModel2D<V> model)Calculate the repulsive forces between vertices connected with edges.protected Map<V,Point2D>FRLayoutAlgorithm2D. calculateRepulsiveForces(Graph<V,E> graph, LayoutModel2D<V> model)Calculate the repulsive forces between verticesprotected Map<V,Point2D>IndexedFRLayoutAlgorithm2D. calculateRepulsiveForces(Graph<V,E> graph, LayoutModel2D<V> model)voidCircularLayoutAlgorithm2D. layout(Graph<V,E> graph, LayoutModel2D<V> model)voidFRLayoutAlgorithm2D. layout(Graph<V,E> graph, LayoutModel2D<V> model)voidIndexedFRLayoutAlgorithm2D. layout(Graph<V,E> graph, LayoutModel2D<V> model)voidLayoutAlgorithm2D. layout(Graph<V,E> graph, LayoutModel2D<V> model)Layout a graph.voidRandomLayoutAlgorithm2D. 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, BiFunction<LayoutModel2D<V>,Integer,FRLayoutAlgorithm2D.TemperatureModel> temperatureModelSupplier, 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 classListenableLayoutModel2D<V>A layout model wrapper which adds support for listeners.classMapLayoutModel2D<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. modelConstructors in org.jgrapht.alg.drawing.model with parameters of type LayoutModel2D Constructor Description ListenableLayoutModel2D(LayoutModel2D<V> model)Create a new model 
 -