Class ExpandXY
- java.lang.Object
-
- org.jungrapht.visualization.decorators.ExpandXY
-
- All Implemented Interfaces:
Shape
public class ExpandXY extends Object implements Shape
A special case ofShape
that is used by theAbstractEdgeRenderer
to expand the unit edge shape in both the x and y axes instead of only in the x axis. This is used by the Articulated edges of the mincross layouts and the (future) orthogonal edges
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
contains(double x, double y)
boolean
contains(double x, double y, double w, double h)
boolean
contains(Point2D p)
boolean
contains(Rectangle2D r)
Rectangle
getBounds()
Rectangle2D
getBounds2D()
PathIterator
getPathIterator(AffineTransform at)
PathIterator
getPathIterator(AffineTransform at, double flatness)
boolean
intersects(double x, double y, double w, double h)
boolean
intersects(Rectangle2D r)
static ExpandXY
of(Shape delegate)
-
-
-
Field Detail
-
delegate
protected Shape delegate
-
-
Method Detail
-
getBounds2D
public Rectangle2D getBounds2D()
- Specified by:
getBounds2D
in interfaceShape
-
intersects
public boolean intersects(double x, double y, double w, double h)
- Specified by:
intersects
in interfaceShape
-
intersects
public boolean intersects(Rectangle2D r)
- Specified by:
intersects
in interfaceShape
-
contains
public boolean contains(double x, double y, double w, double h)
-
contains
public boolean contains(Rectangle2D r)
-
getPathIterator
public PathIterator getPathIterator(AffineTransform at)
- Specified by:
getPathIterator
in interfaceShape
-
getPathIterator
public PathIterator getPathIterator(AffineTransform at, double flatness)
- Specified by:
getPathIterator
in interfaceShape
-
-