Package | Description |
---|---|
edu.uci.ics.jung.io |
Provides a set of graph file format interpreters for loading graphs from disk.
|
edu.uci.ics.jung.visualization |
Provides a visualization mechanism for drawing and rendering Graphs.
|
edu.uci.ics.jung.visualization.contrib |
These are additional layouts contributed by various users.
|
edu.uci.ics.jung.visualization.subLayout | |
scratch.scott |
Modifier and Type | Method and Description |
---|---|
void |
PajekNetWriter.save(Graph g,
java.lang.String filename,
VertexStringer vs,
NumberEdgeValue nev,
VertexLocationFunction vld)
Saves
g to filename . |
void |
PajekNetWriter.save(Graph graph,
java.io.Writer w,
VertexStringer vs,
NumberEdgeValue nev,
VertexLocationFunction vld)
Writes
graph to w . |
Modifier and Type | Interface and Description |
---|---|
interface |
Layout
A generalized interface is a mechanism for returning (x,y) coordinates
from vertices.
|
interface |
LayoutMutable
An extended interface for signalling a layout that the
underlying graph has been changed.
|
interface |
PersistentLayout
interface for PersistentLayout
Also holds a nested class Point to serialize the
Vertex locations
|
interface |
SettableVertexLocationFunction
An extension of
VertexLocationFunction that
provides a means to alter the location for a ArchetypeVertex . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractLayout
Implements some of the dirty work of writing a layout algorithm, allowing
the user to express their major intent more simply.
|
class |
DefaultSettableVertexLocationFunction
A
Map -based implementation of
SettableVertexLocationFunction . |
class |
FadingVertexLayout
Deprecated.
If you are using this code, PLEASE CONTACT US
|
class |
FRLayout
Implements the Fruchterman-Reingold algorithm for node layout.
|
class |
ISOMLayout
Implements a self-organizing map layout algorithm, based on Meyer's
self-organizing graph methods.
|
class |
LayoutDecorator
a pure decorator for the Layout interface.
|
class |
PersistentLayoutImpl
Implementation of PersistentLayout.
|
class |
RandomVertexLocationDecorator |
class |
SpringLayout
The SpringLayout package represents a visualization of a set of nodes.
|
class |
StaticLayout |
Modifier and Type | Field and Description |
---|---|
protected VertexLocationFunction |
AbstractLayout.vertex_locations |
Modifier and Type | Method and Description |
---|---|
static VertexLocationFunction |
VertexLocationUtils.scale(VertexLocationFunction vld,
double dx,
double dy) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractLayout.initialize(java.awt.Dimension size,
VertexLocationFunction v_locations) |
static VertexLocationFunction |
VertexLocationUtils.scale(VertexLocationFunction vld,
double dx,
double dy) |
Constructor and Description |
---|
DefaultSettableVertexLocationFunction(VertexLocationFunction vlf) |
Modifier and Type | Class and Description |
---|---|
class |
CircleLayout
Positions vertices equally spaced on a regular circle.
|
class |
DAGLayout |
class |
KKLayout
Implements the Kamada-Kawai algorithm for node layout.
|
class |
KKLayoutInt
Implements the Kamada-Kawai algorithm for node layout, tweaked to store vertex distances as integers.
|
class |
TreeLayout |
Modifier and Type | Class and Description |
---|---|
class |
SubLayoutDecorator
Extends the base decorator class and overrides methods to
cause the location methods to check with the sublayouts
for location information
|
Modifier and Type | Class and Description |
---|---|
class |
AestheticSpringVisualizer
The SpringVisualizer package represents a visualization of a set of nodes.
|
class |
FastScalableMDS |