Uses of Class
samples.preview_new_graphdraw.StaticLayout

Packages that use StaticLayout
samples.preview_new_graphdraw This module provides a new way of thinking about graph drawing. 
samples.preview_new_graphdraw.iter   
samples.preview_new_graphdraw.staticlayouts   
 

Uses of StaticLayout in samples.preview_new_graphdraw
 

Methods in samples.preview_new_graphdraw that return StaticLayout
 StaticLayout StaticLayout.initializeLocations(Dimension d, Graph g)
           
 

Uses of StaticLayout in samples.preview_new_graphdraw.iter
 

Constructors in samples.preview_new_graphdraw.iter with parameters of type StaticLayout
LocalGraphDraw(Graph g, StaticLayout startup, IterableLayout layout, VertexRenderer vr, EdgeRenderer er, Dimension d, boolean prerelax)
          A verbose constructor creates a LocalGraphDraw object, and a panel to show.
LocalGraphDraw(Graph g, StaticLayout startup, VertexRenderer vr, EdgeRenderer er, Dimension d)
          A LocalGraphDraw that won't be animated.
 

Uses of StaticLayout in samples.preview_new_graphdraw.staticlayouts
 

Subclasses of StaticLayout in samples.preview_new_graphdraw.staticlayouts
 class CircleLayout
           
 class IterableFromStaticEmittedLayout
          The IterableToStaticLayout allows a graph to start fully visualized and advanced, at the cost of some time. this version starts with a Graph, and (when initializeLocations is called) repeatedly iterates until done.
 class IterableToStaticLayout
          The IterableToStaticLayout allows a graph to start fully visualized and advanced, at the cost of some time.
 class RandomLayout
           
 class SimpleLayoutAlgorithm
           
 

Fields in samples.preview_new_graphdraw.staticlayouts declared as StaticLayout
protected  StaticLayout IterableToStaticLayout.startingLayout
           
 

Methods in samples.preview_new_graphdraw.staticlayouts that return StaticLayout
 StaticLayout CircleLayout.initializeLocations(Dimension d, Graph g)
           
 StaticLayout IterableFromStaticEmittedLayout.initializeLocations(Dimension d, Graph g)
           
 StaticLayout IterableToStaticLayout.initializeLocations(Dimension d, Graph g)
           
 

Constructors in samples.preview_new_graphdraw.staticlayouts with parameters of type StaticLayout
IterableToStaticLayout(StaticLayout starting, IterableLayout iter)