Class HyperbolicShapeTransformer
- java.lang.Object
-
- org.jungrapht.visualization.transform.MutableTransformerDecorator
-
- org.jungrapht.visualization.transform.LensTransformer
-
- org.jungrapht.visualization.transform.HyperbolicTransformer
-
- org.jungrapht.visualization.transform.shape.HyperbolicShapeTransformer
-
- All Implemented Interfaces:
BidirectionalTransformer
,MutableTransformer
,ShapeFlatnessTransformer
,ShapeTransformer
,ChangeEventSupport
public class HyperbolicShapeTransformer extends HyperbolicTransformer implements ShapeFlatnessTransformer
HyperbolicShapeTransformer extends HyperbolicTransformer and adds implementations for methods in ShapeFlatnessTransformer. It modifies the shapes (Vertex, Edge, and Arrowheads) so that they are distorted by the hyperbolic transformation- Author:
- Tom Nelson
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HyperbolicShapeTransformer.Builder<T extends HyperbolicShapeTransformer,B extends HyperbolicShapeTransformer.Builder<T,B>>
-
Field Summary
-
Fields inherited from class org.jungrapht.visualization.transform.LensTransformer
lens
-
Fields inherited from class org.jungrapht.visualization.transform.MutableTransformerDecorator
delegate
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
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
.protected
HyperbolicShapeTransformer(Lens lens, MutableTransformer delegate)
Create an instance, setting values from the passed component and registering to listen for layoutSize changes on the component.protected
HyperbolicShapeTransformer(HyperbolicShapeTransformer.Builder builder)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HyperbolicShapeTransformer.Builder<?,?>
builder(Dimension dimension)
static HyperbolicShapeTransformer.Builder<?,?>
builder(Lens lens)
Shape
inverseTransform(Shape shape)
Shape
transform(Shape shape)
Transform the supplied shape with the overridden transform method so that the shape is distorted by the hyperbolic transform.Shape
transform(Shape shape, float flatness)
map a shape from graph coordinate system to the screen coordinate system-
Methods inherited from class org.jungrapht.visualization.transform.HyperbolicTransformer
inverseTransform, transform
-
Methods inherited from class org.jungrapht.visualization.transform.LensTransformer
getLens, inverseTransform, setToIdentity, transform
-
Methods inherited from class org.jungrapht.visualization.transform.MutableTransformerDecorator
addChangeListener, concatenate, fireStateChanged, getChangeListeners, getDelegate, getRotation, getScale, getScaleX, getScaleY, getShearX, getShearY, getTransform, getTranslateX, getTranslateY, preConcatenate, removeChangeListener, rotate, rotate, scale, scale, setDelegate, setScale, setTranslate, shear, translate
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jungrapht.visualization.transform.BidirectionalTransformer
inverseTransform, inverseTransform, transform, transform
-
Methods inherited from interface org.jungrapht.visualization.util.ChangeEventSupport
addChangeListener, fireStateChanged, getChangeListeners, removeChangeListener
-
Methods inherited from interface org.jungrapht.visualization.transform.MutableTransformer
concatenate, getRotation, getScale, getScaleX, getScaleY, getShearX, getShearY, getTransform, getTranslateX, getTranslateY, preConcatenate, rotate, rotate, scale, scale, setScale, setToIdentity, setTranslate, shear, translate
-
-
-
-
Constructor Detail
-
HyperbolicShapeTransformer
protected HyperbolicShapeTransformer(HyperbolicShapeTransformer.Builder builder)
-
HyperbolicShapeTransformer
protected HyperbolicShapeTransformer(Lens lens, MutableTransformer delegate)
Create an instance, setting values from the passed component and registering to listen for layoutSize changes on the component.- Parameters:
lens
- theLens
to consider for transformdelegate
- transformer to use
-
HyperbolicShapeTransformer
protected 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
.- Parameters:
d
- the size for the lensdelegate
- the viewTransformer to use
-
-
Method Detail
-
builder
public static HyperbolicShapeTransformer.Builder<?,?> builder(Lens lens)
-
builder
public static HyperbolicShapeTransformer.Builder<?,?> builder(Dimension dimension)
-
transform
public Shape transform(Shape shape)
Transform the supplied shape with the overridden transform method so that the shape is distorted by the hyperbolic transform.- Specified by:
transform
in interfaceShapeTransformer
- Overrides:
transform
in classMutableTransformerDecorator
- Parameters:
shape
- a shape to transform- Returns:
- a GeneralPath for the transformed shape
-
transform
public Shape transform(Shape shape, float flatness)
Description copied from interface:ShapeFlatnessTransformer
map a shape from graph coordinate system to the screen coordinate system- Specified by:
transform
in interfaceShapeFlatnessTransformer
- Parameters:
shape
- the shape to be transformedflatness
- used to break the supplied shape into segments- Returns:
- a GeneralPath (Shape) representing the screen points of the shape
-
inverseTransform
public Shape inverseTransform(Shape shape)
- Specified by:
inverseTransform
in interfaceShapeTransformer
- Overrides:
inverseTransform
in classMutableTransformerDecorator
-
-