edu.uci.ics.jung.visualization.MultiLayerTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jung-visualization Show documentation
Show all versions of jung-visualization Show documentation
Core visualization support for the JUNG project
The newest version!
package edu.uci.ics.jung.visualization;
import java.awt.Shape;
import java.awt.geom.Point2D;
import edu.uci.ics.jung.visualization.transform.BidirectionalTransformer;
import edu.uci.ics.jung.visualization.transform.MutableTransformer;
import edu.uci.ics.jung.visualization.transform.shape.ShapeTransformer;
import edu.uci.ics.jung.visualization.util.ChangeEventSupport;
public interface MultiLayerTransformer extends BidirectionalTransformer, ShapeTransformer, ChangeEventSupport {
void setTransformer(Layer layer, MutableTransformer Function);
MutableTransformer getTransformer(Layer layer);
Point2D inverseTransform(Layer layer, Point2D p);
Point2D transform(Layer layer, Point2D p);
Shape transform(Layer layer, Shape shape);
Shape inverseTransform(Layer layer, Shape shape);
void setToIdentity();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy