Uses of Interface
org.jungrapht.visualization.transform.MutableTransformer
-
Packages that use MutableTransformer Package Description org.jungrapht.visualization Frameworks and mechanisms for visualizing JUNGRAPHT graphs using Swing/AWT.org.jungrapht.visualization.control Mechanisms for manipulating and controlling a graph visualization, largely in terms of mouse plugins.org.jungrapht.visualization.transform Visualization mechanisms related to transformations, including lens effects.org.jungrapht.visualization.transform.shape Visualization mechanisms related to transformation of graph element shapes. -
-
Uses of MutableTransformer in org.jungrapht.visualization
Fields in org.jungrapht.visualization declared as MutableTransformer Modifier and Type Field Description protected MutableTransformer
DefaultTransformer. layoutTransformer
protected MutableTransformer
DefaultTransformer. viewTransformer
Methods in org.jungrapht.visualization that return MutableTransformer Modifier and Type Method Description protected MutableTransformer
DefaultTransformer. getLayoutTransformer()
MutableTransformer
DefaultTransformer. getTransformer(MultiLayerTransformer.Layer layer)
MutableTransformer
MultiLayerTransformer. getTransformer(MultiLayerTransformer.Layer layer)
protected MutableTransformer
DefaultTransformer. getViewTransformer()
Methods in org.jungrapht.visualization with parameters of type MutableTransformer Modifier and Type Method Description protected void
DefaultTransformer. setLayoutTransformer(MutableTransformer Function)
void
DefaultTransformer. setTransformer(MultiLayerTransformer.Layer layer, MutableTransformer Function)
void
MultiLayerTransformer. setTransformer(MultiLayerTransformer.Layer layer, MutableTransformer Function)
protected void
DefaultTransformer. setViewTransformer(MutableTransformer Function)
-
Uses of MutableTransformer in org.jungrapht.visualization.control
Classes in org.jungrapht.visualization.control that implement MutableTransformer Modifier and Type Class Description class
LensTransformSupport<V,E>
class
TransformSupport<V,E>
Methods in org.jungrapht.visualization.control with parameters of type MutableTransformer Modifier and Type Method Description protected void
CrossoverScalingControl. adjustTransformers(double horizontalAmount, double verticalAmount, Point2D at, MutableTransformer layoutTransformer, MutableTransformer viewTransformer, double inverseModelScaleX, double inverseModelScaleY, double inverseViewScaleX, double inverseViewScaleY, Point2D transformedAt, boolean reset, boolean adjustViewTransform)
-
Uses of MutableTransformer in org.jungrapht.visualization.transform
Classes in org.jungrapht.visualization.transform that implement MutableTransformer Modifier and Type Class Description class
HyperbolicTransformer
HyperbolicTransformer wraps a MutableAffineTransformer and modifies the transform and inverseTransform methods so that they create a fisheye projection of the graph points, with points near the center spread out and points near the edges collapsed onto the circumference of an ellipse or the boundaries of a rectangleclass
LensTransformer
LensTransformer wraps a MutableAffineTransformer and modifies the transform and inverseTransform methods so that they create a projection of the graph points within an elliptical lens.class
MagnifyTransformer
MagnifyTransformer wraps a MutableAffineTransformer and modifies the transform and inverseTransform methods so that they create an enlarging projection of the graph points.class
MutableAffineTransformer
Provides methods to mutate the AffineTransform used by AffineTransformer base class to map points from one coordinate system to another.class
MutableTransformerDecorator
a complete decorator that wraps a MutableTransformer.Fields in org.jungrapht.visualization.transform declared as MutableTransformer Modifier and Type Field Description protected MutableTransformer
MutableTransformerDecorator.Builder. delegate
protected MutableTransformer
MutableTransformerDecorator. delegate
Methods in org.jungrapht.visualization.transform that return MutableTransformer Modifier and Type Method Description MutableTransformer
MutableTransformerDecorator. getDelegate()
Methods in org.jungrapht.visualization.transform with parameters of type MutableTransformer Modifier and Type Method Description B
MutableTransformerDecorator.Builder. delegate(MutableTransformer delegate)
void
MutableTransformerDecorator. setDelegate(MutableTransformer delegate)
Constructors in org.jungrapht.visualization.transform with parameters of type MutableTransformer Constructor Description HyperbolicTransformer(Dimension d, MutableTransformer delegate)
create an instance, setting values from the passed component and registering to listen for layoutSize changes on the componentHyperbolicTransformer(Lens lens, MutableTransformer delegate)
Create an instance with a possibly shared transform.LensTransformer(Dimension d, MutableTransformer delegate)
LensTransformer(Lens lens, MutableTransformer delegate)
MagnifyTransformer(Dimension d, MutableTransformer delegate)
Create an instance with a possibly shared transform.MagnifyTransformer(Lens lens, MutableTransformer delegate)
MutableTransformerDecorator(MutableTransformer delegate)
-
Uses of MutableTransformer in org.jungrapht.visualization.transform.shape
Classes in org.jungrapht.visualization.transform.shape that implement MutableTransformer Modifier and Type Class Description class
HyperbolicShapeTransformer
HyperbolicShapeTransformer extends HyperbolicTransformer and adds implementations for methods in ShapeFlatnessTransformer.class
MagnifyShapeTransformer
MagnifyShapeTransformer extends MagnifyTransformer and adds implementations for methods in ShapeTransformer.Constructors in org.jungrapht.visualization.transform.shape with parameters of type MutableTransformer Constructor Description HyperbolicShapeTransformer(Dimension d, MutableTransformer delegate)
Create an instance, setting values from the passed component and registering to listen for layoutSize changes on the component, with a possibly shared transformdelegate
.HyperbolicShapeTransformer(Lens lens, MutableTransformer delegate)
Create an instance, setting values from the passed component and registering to listen for layoutSize changes on the component.MagnifyShapeTransformer(Dimension d, MutableTransformer delegate)
MagnifyShapeTransformer(Lens lens, MutableTransformer delegate)
-