Class ShapeCollectionPathIterator
- java.lang.Object
-
- org.locationtech.jts.jump.workbench.ui.renderer.java2D.ShapeCollectionPathIterator
-
- All Implemented Interfaces:
PathIterator
public class ShapeCollectionPathIterator extends Object implements PathIterator
-
-
Field Summary
-
Fields inherited from interface java.awt.geom.PathIterator
SEG_CLOSE, SEG_CUBICTO, SEG_LINETO, SEG_MOVETO, SEG_QUADTO, WIND_EVEN_ODD, WIND_NON_ZERO
-
-
Constructor Summary
Constructors Constructor Description ShapeCollectionPathIterator(Collection shapes, AffineTransform affineTransform)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
currentSegment(double[] coords)
int
currentSegment(float[] coords)
int
getWindingRule()
boolean
isDone()
void
next()
-
-
-
Constructor Detail
-
ShapeCollectionPathIterator
public ShapeCollectionPathIterator(Collection shapes, AffineTransform affineTransform)
-
-
Method Detail
-
getWindingRule
public int getWindingRule()
- Specified by:
getWindingRule
in interfacePathIterator
-
isDone
public boolean isDone()
- Specified by:
isDone
in interfacePathIterator
-
next
public void next()
- Specified by:
next
in interfacePathIterator
-
currentSegment
public int currentSegment(float[] coords)
- Specified by:
currentSegment
in interfacePathIterator
-
currentSegment
public int currentSegment(double[] coords)
- Specified by:
currentSegment
in interfacePathIterator
-
-